git status -sb | head -n1
is now part of my shell prompt. /via @kaihowl
Neat git cheat sheet visualization
Useful #git: Splitting Commits
git log --graph --pretty="format:%C(yellow)%h%Cblue%d%Creset %s %C(white) %an, %ar%Creset"
To convert a bzr repository to git (cwd: bzr repo):
$ git init &&
bzr fast-export pwd
| git fast-import &&
rm -r .bzr &&
git reset HEAD
RT @tomlazar: Neat how-to "How to Move Folders Between Git Repositories" (preserving their history, of course) #git
bends my mind
git stash --keep-index was new to me. Otherwise: same workflow for me.
Bazaar Explorer is a desktop application for using the Bazaar Version Control System. It provides a high level interface to all commonly used features, launching "applets" from the QBzr plug-in to provide most of the functionality. Alternatively, the applets from the bzr-gtk plug-in can be used if it is installed. Bazaar Explorer runs on GNOME, KDE, Windows and Mac OS X. It requires Bazaar 1.14 or later and QBzr 0.11 or later.