Angus Miller

Angus Miller: The Miscellaneous Ramblings of a Remarkable Gentleman

Menu

Skip to content
  • Home
  • Cmd Line
  • Hire Me
  • Tools
  • About

Category Archives: Git

July 4, 2011 Git 3 Comments

Amend your last commit message in Git

by angus

Sometimes the fingers are ahead of the brain and you need amend your last git commit message.

git commit --amend -m "your new message"

February 17, 2011 Git Leave a comment

Bulk rm files in Git

by angus

Manually deleting files in git sucks fortunately there’s a better way.

git add -u

February 7, 2011 Git 3 Comments

GitHub Tips: Delete a remote branch

by angus

Deleting a remote branch on github is rather straightforward. The format if the commad is:

git push remotename :branchname

So to delete the myfunkytest branch on the origin remote simply issue

git push origin :myfunkytest

Blog at WordPress.com.