I\'m just entering into the wonderful world of git.
I have to submit a bunch of changes that I\'ve made on my program, located in a directory called /var/www/myapp
To add some files or folder to your repository, they have to be in the folder you created with git clone
. So copy/paste your application in your local git folder and then go in it and do git add *
and then you'll be able to commit to the server with git commit -m 'message'
and finally push the changes to the server with git push