Answers for "Git Branch usage order"

0

Git Branch usage order

git for-each-ref --sort=-committerdate refs/heads/

# Or using git branch (since version 2.7.0)
git branch --sort=-committerdate  # DESC
git branch --sort=committerdate  # ASC
Posted by: Guest on September-14-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language