07 December, 2013

Git from the commandline

How to use Git in a terminal window:
   git init
   git add *
   git config --global user.name "yourUserName"
   git config --global user.email "your@email.web"
   git add *
   git commit -m 'First upload'
   git push origin master
It's more easy than using the GUI client.

No comments: