Difference between revisions of "Git for dummies"

From FreekiWiki
Jump to navigation Jump to search
Line 31: Line 31:
  
  
http://git.or.cz/course/svn.html
+
[http://git.or.cz/course/svn.html Git - SVN Crash Course]
  
 
[[Category: Coders]]
 
[[Category: Coders]]

Revision as of 20:02, 15 November 2008

Get a copy of the library project (assuming the central repository is on a server named devo):

 git clone devo:/git/library
 cd library/

Sort of like svn update:

 git pull

Like svn update (but if you have local commits):

 git fetch
 git rebase origin/master

(Master is like trunk is in svn.)

Now edit a file

 vi TODO 

(See it's just like svn!!)

Now schedule this modification to be committed locally:

 git add TODO 

Want to see changes that you hain't yet git added?

 git diff

Want to see what you are about to commit?

 git diff --cached

Now commit it locally:

 git commit

Now send your locally committed changes to the main repository:

 git push


Git - SVN Crash Course