在特定项目中,单词“feature”传递为大写。
For example:
git checkout -b "feature/#123123-test"
the name of branch will:
FEATURE/#123123-teste
if I put:
git checkout -b "otherthing/#123123-test"
will:
otherthing/#123123-test
Run Code Online (Sandbox Code Playgroud)
.gitconfig:
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[user]
name = Bruno
email = *******@******.com.br
Run Code Online (Sandbox Code Playgroud)
有人知道这里发生了什么事吗?