When I type git branch, I receive a list of branches that appear to be sorted alphabetically instead of being sorted by their creation time.

Is there a way to make the output of git branch sorted by date?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Edit

Alas there are apparent problems with the sorting options taken by git-for-each-ref. Since that command is (obviously) explicitely aimed at showing refs and accepts the --sort option, I'm thinking of this as a likely bug[1].

Here is the best options I can further come up with, but the output is quite far estranged from the original format (because they rely on decorating revisions after the fact to refer to branches). Ah well, maybe it is of use for you:


[1] if this were git-rev-list or git-log I would think the problem would be that we're not actually walking a revision tree; we're actively trying to show only tips of trees, without walking them.

Temporary alternative

git log --no-walk --date-order --oneline --decorate \
       $(git rev-list --branches --no-walk)

This would give you a list similar to

4934e92 (HEAD, origin/testing, origin/HEAD, testing) reviewed INSTALL file as per #1331
6215be7 (origin/maint, maint) reviewed INSTALL file as per #1331
1e5e121 (origin/emmanuel, emmanuel) buffers: adjust the size in zfsfuse_stat
e96783e (origin/compress, compress) buffers: adjust the size in zfsfuse_stat
f6e2c6c (origin/unstable, unstable) revert the fatal condition again
dd52720 (origin/master-lucid, master-lucid) lucid
3b32fa7 (tag: 0.7.0, origin/master, master) panic revocation of 0.7.0-0 package necessitates an update
6eaa64f (origin/maint-0.6.9, maint-0.6.9) Replace remount by drop_caches (on rollback)

_As you can see, the result can be a bit overwhelming in the presence of many remote (tracking) branches, which effectively alias the same revisions. However, the result is properly ordered by (descending) date.

The correct (unfortunately broken?) approach...

No, but you should be able to do

git for-each-ref --sort='-*committerdate' --format="%(refname:short)" refs/heads/

(use --sort='-*authordate' for author date ordering)

On my test repo, this yields:

compress
emmanuel
maint
maint-0.6.9
master
master-lucid
testing
unstable

Alias

you can create a git alias to do this: append the following lines to .git/config

[alias]
branch2 = git for-each-ref --sort='-*committerdate' --format="%(refname:short)" refs/heads/

From then on, you could just say git branch2

link|improve this answer
This is a great answer! Already +1. It doesn't work for me, however, for some reason. It does sort them differently than git branch, though. Any idea what could be the problem? – WinWin Jul 8 '11 at 20:52
The .git/config alias tip is remarkable. I tried --sort='-*authordate' and --sort='-*taggerdate' but they none seems to do the trick of sorting by tagging time. – WinWin Jul 8 '11 at 20:58
@WinWin, do you want them sorted by the time they were created or by the time they were last committed to? I'm not sure the former would be that easy to get. – ebneter Jul 8 '11 at 21:00
1  
@WinWin, I agree, there seems to be something preventing the sort order to work correctly. I'll update my answer accordingly – sehe Jul 8 '11 at 21:02
@ebneter Either will do for now. But none of these work for me. – WinWin Jul 8 '11 at 21:02
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.