在Makefile中执行正确的命令“ git credential-osxkeychain”

问题描述 投票:0回答:1

我想将下一个控制台命令添加到Makefile:

git credential-osxkeychain erase
host=github.com
protocol=https

但是,不能这样做:

clean:
    git credential-osxkeychain erase
    host=github.com
    protocol=https

如何简单?

make clean
git macos makefile
1个回答
0
投票
问问题时,您应该始终描述发生的事情,为什么发生的事情不是您想要发生的事情。

[不确定,我只能假设您遇到的问题是,即使在make clean之后,环境变量hostprotocol都没有按照您希望的那样设置。

无法通过单独运行make来完成您想做的事情。查看此答案:https://stackoverflow.com/a/54877556/939557

© www.soinside.com 2019 - 2024. All rights reserved.