打开终端时,两者都会出现。
我尝试按照以下说明进行git自动补全操作:
转到终端
将git-completion.bash
脚本放入您的主目录:
curl https://raw.githubusercontent.com/git... -o ~/.git-completion.bash
将以下行添加到您的:.bash_profile
;这告诉bash运行git自动完成脚本(如果存在)
vi ~/.bash_profile
if [ -f ~/.git-completion.bash ]; then
. ~/.git-completion.bash
fi
但是它没有用,现在打开终端时我得到了这两行,它们不会消失:
-bash: ‘export: command not found
-bash: 400:: command not found