我想将下一个控制台命令添加到Makefile:
git credential-osxkeychain erase
host=github.com
protocol=https
但是,不能这样做:
clean:
git credential-osxkeychain erase
host=github.com
protocol=https
如何简单?
make clean
[不确定,我只能假设您遇到的问题是,即使在make clean
之后,环境变量host
和protocol
都没有按照您希望的那样设置。
无法通过单独运行make来完成您想做的事情。查看此答案:https://stackoverflow.com/a/54877556/939557