将 git 配置更改上传到服务器

发布于 2024-12-10 08:54:59 字数 301 浏览 0 评论 0原文

想要

$ git config --local alias.myalias myvalue
$ git push

在克隆项目之后更新服务器上的 git 配置(如别名),但找不到 myalias 键却没有

$ git config --local alias.myalias

给我任何东西(.git/config 文件中没有任何内容)。我如何推送我的.git/config到服务器?

Wanna to update git configurations on server like aliases

$ git config --local alias.myalias myvalue
$ git push

after that cloning project and can't find the myalias key

$ git config --local alias.myalias

gave me nothing (nothing in .git/config file). How can I push my .git/config to server?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

罪#恶を代价 2024-12-17 08:54:59

配置(位于 .git/config)是您的存储库的本地配置,无法推送。您唯一能做的可能就是在存储库中签入诸如 .gitconfig 之类的文件,并在您使用的其他存储库中设置指向 .git/config 的符号链接。

The config ( at .git/config) is local to your repo and cannot be pushed. Only thing you can do probably is to checkin a file like .gitconfig in the repo and setup a symlink to the .git/config in other repos that you use.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文