当我通过 ssh 登录到我的 Ubuntu 服务器时,收到以下消息:
Welcome to Ubuntu 14.04.5 LTS (GNU/Linux 2.6.32-042stab094.7 x86_64)
* Documentation: https://help.ubuntu.com/
Last login: Thu Jan 26 02:55:43 2017 from 255.255.255.255
fatal: Not a git repository (or any of the parent directories): .git
第一部分很常见。但是为什么我会收到“不是 git 存储库”消息?我如何知道进程运行了哪个 git 命令?
答案1
好的,问题出在我的以下别名上.zshrc
:
alias git-clear="git branch -d $(git branch --merged)"
我将双引号替换为单引号,一切就正常了。
非常感谢@muru 和@Jakuje 帮助我解决这个问题!