我想设置一个git别名来快速配置我的user.name
和user.email
。
我尝试使用--add
选项,但我无法执行以下操作:
[alias]
cfTest = config --add user.email "test@test.com" --add user.name "test"
我得到的只是:
error: wrong number of arguments
我想用git别名来做,但如果不可能,我会用常规的bash别名来做。
你会怎么做?
答案 0 :(得分:1)
您无法多次将-add选项传递给单个git config
命令,您需要两次调用git config
。
[aliasl]
cfgTest = !git config user.name "Andy" && git config user.email "Andrew@nowhere.com"