标签: git branch
git log --all非常方便。
git log --all
假设我在其中一个分支中发现了一个错误,并想检查是否还应该纠正其他分支。有没有比重复git checkout所有分支更好的方法,或基于git cat-file的下面的技巧(不是很方便)?
git checkout
git cat-file
for b in `git branch -r`; do echo $b; git cat-file -p ${b}:path/to/my.file; done