เมื่อผมใช้คำสั่งไปยังรายการทุกสาขาผมเห็นการส่งออกของgit branch
git branch | less
คำสั่งgit branch
ควรจะแสดงรายการสาขาเช่นเดียวกับls
สำหรับไฟล์
นี่คือผลลัพธ์ที่ฉันได้รับ:
ฉันจะรับพฤติกรรมเริ่มต้นได้git branch
อย่างไร สาเหตุของเพจเอาต์เอาต์คืออะไร
ฉันกำลังใช้ ZSH กับoh_my_zsh
(ไม่มีอะไรสำหรับ Git ในนั้น) และฉัน.gitconfig
มีลักษณะเช่นนี้:
[user]
email = myemail@mail.com
name = Dennis Haegler
[push]
default = simple
[merge]
tool = vimdiff
[core]
editor = nvim
excludesfile = /Users/dennish/.gitignore_global
[color]
ui = true
[alias]
br = branch
ci = commit -v
cam = commit -am
co = checkout
df = diff
st = status
sa = stash
mt = mergetool
cp = cherry-pick
pl = pull --rebase
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
[mergetool "sourcetree"]
cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh
\"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true