Git Essence Tutorial

Git Essence Tutorial from Ho Kim See also: 《Pro-Git》 Cheers~ Continue reading
Posted in Git, Training| Tagged , , , , | 2 Comments

Git Essence

CVCS (Centralized Version Control Systems) like SVN, CVS etc. DVCS (Distributed Version Control System) like Git, Bazaar etc. Git Status: modified, staged, committed Continue reading
Posted in Git| Tagged | 2 Comments

Install Git on Windows

1. Install msysgit http://code.google.com/p/msysgit/ 2. Configurations [codesyntax lang="bash"] $ git config --global user.name "kim" $ git config --global user.email xqpmjh@gmail.com [/codesyntax] 3.… Continue reading
Posted in Git| Tagged | Leave a comment