📌  相关文章
📜  首先查看最近的 git 分支 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:41.444000             🧑  作者: Mango

代码示例1
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