Daily Archives: May 30, 2012

Different Git commands

Following are the different git commands:  Clone a Git repository: git clone username@yourhost.com:path/to/repo/repo-name.git  Initializing an empty git repository: git init Adding files to git repository:  git add .  The commit command:  git commit -m “Initial import”  Viewing the commit log: … Continue reading

Posted in Uncategorized | Leave a comment