Difference between revisions of "Git"

From Nerdica Wiki
Jump to: navigation, search
(Started Git cheatsheet)
 
(No difference)

Latest revision as of 15:26, 7 April 2010

Add all new files.

$ git add .

Commit and add comments:

$ git commit -m "<comments>"

Push the changes to the server:

$ git push

Pull changes from the server

$ git pull