After calling the push
command files are not on the server.
On my local computer i have test.git
directory.
I type:
git init
git add .
git commit -a -m "First commit"
git remote add origin user@server.com:/var/www/test.git
On serwer i created new directory test.git
inside git init --bare --shared
On local
git push origin master
And no new files appear on server
Even after git push origin
Any ideas? Maybe i forgot something?