Git

From Nerdica Wiki
Revision as of 14:26, 7 April 2010 by Travis (Talk | contribs) (Started Git cheatsheet)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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