Tag: git
Remove a Folder from Git
July 11, 2008
Remove a given folder from a Git repository… git rm -r cache/
Commit All Changes in Git
February 9, 2008
Telling Git when you’ve added, deleted and renamed files gets tedious. Use this command and Git will look at the…
Merging a Branch with the Master Branch in git
December 8, 2007
The commands needed to merge two branches in git. git checkout master git merge BrachName git commit -m “Merged” -a
Braching in Git
November 28, 2007
Use this command to create a new brach in a git Repository git branch NameOfNewBranch
git status Without the Untracked Files
November 4, 2007
Don’t show the untracked files in git status git status | perl -pe “exit if(/Untracked files\:/)”
Using Git – the Basic Commands
September 16, 2007
Initialize a New Project in Git… git init git add . git commit #Add a file git add file.php git…
Recent Comments