GIT - List of git branches


/ Published in: Bash
Save to your folder(s)

I want to get a list of all the branches in a Git repository with the "freshest" branches at the top, where the "freshest" branch is the one that's been committed to most recently (and is, therefore, more likely to be one I want to pay attention to).


Copy this code and paste it in your HTML
  1. git for-each-ref --sort=-committerdate refs/heads/

URL: http://stackoverflow.com/questions/5188320/how-can-i-get-a-list-of-git-branches-ordered-by-most-recent-commit

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.