"git show-branch" 中的感叹号是什么意思?
What does an exclamation mark in "git show-branch" mean?
我才刚刚开始 git。如果我执行 'git show-branch',它会以图形方式显示分支分歧。 ---
分隔符上方的感叹号与星号相比是什么意思?
XXXXX@XXXXX gittest % git show-branch
* [Branch1] Adding third file to Branch1
! [feature/new-feature] Adding second file to master branch
! [master] Adding second file to master branch
---
* [Branch1] Adding third file to Branch1
* [Branch1^] Branch 1 file two
* [Branch1~2] Branch1 first commit
++ [feature/new-feature] Adding second file to master branch
*++ [Branch1~3] Initial commit
XXXXX@XXXXX gittest %
在官方文档中here
Given N , the first N lines are the one-line description from their commit message. The branch head that is pointed at by $GIT_DIR/HEAD is prefixed with an asterisk * character while other heads are prefixed with a ! character.
我才刚刚开始 git。如果我执行 'git show-branch',它会以图形方式显示分支分歧。 ---
分隔符上方的感叹号与星号相比是什么意思?
XXXXX@XXXXX gittest % git show-branch
* [Branch1] Adding third file to Branch1
! [feature/new-feature] Adding second file to master branch
! [master] Adding second file to master branch
---
* [Branch1] Adding third file to Branch1
* [Branch1^] Branch 1 file two
* [Branch1~2] Branch1 first commit
++ [feature/new-feature] Adding second file to master branch
*++ [Branch1~3] Initial commit
XXXXX@XXXXX gittest %
在官方文档中here
Given N , the first N lines are the one-line description from their commit message. The branch head that is pointed at by $GIT_DIR/HEAD is prefixed with an asterisk * character while other heads are prefixed with a ! character.