This page cannot be shown here. You can still read it on the original site — the toolbar below keeps your place in the directory.
recent branches I came across 1 a useful git alias that lists the 10 most recent branches: git config - -global alias.recent-branches ' !git branch --sort=-committerdate --format="%(committerdate:relative)%09%(refname:short)" | head -10 ' Which can be called using git recent-branches . recent commits This inspired me to make a similar alias to list the 10 most recent commits: git config - -global…

Comments
Nothing yet. Say the first thing.
Sign in to join the conversation.