Question:
比如从 branch A 切出一个 branch B
然后对branch B做了一系列的操作
然后忘记了branch B是从哪个分支切出来的
如何找到基于哪个分支创建的?
Answer
git reflog --date=local | grep <branchname>
可以看看这个:https://stackoverflow.com/questions/2255416/how-to-determine-when-a-git-branch-was-created