Git 常用命令
bash
# 可以用 / 搜索某个 commit
git log --oneline
# 查看该 commit 之前的 10 条 log
git log --oneline -10 <commit_hash>
1
2
3
4
5
2
3
4
5
--date-order
默认是 --topo-order