-
-
Notifications
You must be signed in to change notification settings - Fork 6
Home
闲耘™ edited this page Jun 14, 2022
·
8 revisions
https://github.com/paulirish/git-open
- Is there a way to find the parent branch(from which branch HEAD is detached) for detached Head ? - How to use Git and GitHub - GitHub Support Community
- How to find the nearest parent of a Git branch? - Stack Overflow
- Find the nearest parent branch of the current git branch
- https://git-scm.com/docs/git-merge-base
- git show-branch (Git) - Git 中文开发手册 - 开发者手册 - 云+社区 - 腾讯云
- git show-branch 详解_薛瑄的博客-CSDN博客
- 一种自动识别并创建 MR/PR 解决思路 · 语雀
git show-branch | grep '*' | grep -v "$(git rev-parse --abbrev-ref HEAD)" | head -n1 | sed 's/.*\[\(.*\)\].*/\1/' | sed 's/[\^~].*//'
git reflog show <branch name>
git log --graph --all --decorate=short
git branch --contains={HASH} --all