将 git 配置更改上传到服务器
想要
$ 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
配置(位于 .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.