Git reference

From thelinuxwiki
Revision as of 02:45, 25 May 2013 by Nighthawk (Talk | contribs)

Jump to: navigation, search

git - distributed revision control system

create repositories by creating a directory for each project. Once you are in the directory,

# git init

Adding Files to the Repository

git add *

or

git add filename.txt

Committing Files The Git add command is normally followed immediately by the Git commit command.

committing creates a snapshot

git commit -a -m "This is my commit message!"


links

beginner guide

pro git book