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?
|
When I type Is there a way to make the output of
| |||
|
feedback
|
|
Edit Alas there are apparent problems with the sorting options taken by 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 Temporary alternative
This would give you a list similar to
_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
(use On my test repo, this yields:
Aliasyou can create a git alias to do this: append the following lines to
From then on, you could just say | |||||||||||||
feedback
|