git设置push

在大规模异地git使用场景中,为了减小主服务器压力和使用效率,可能会添加本地只读镜像服务器,在git客户端可以分别指定push URL和fetch URL或者对git代理进行读写分离.

修改push URL

git push --help
#替换旧的URL,真正生效的是actual url
[url "<actual url base>"]
                           insteadOf = <other url base>
#只修改真正push的URL
[url "<actual url base>"]
                           pushInsteadOf = <other url base>

#例如:
[remote "origin"]
        url = http://fetch.example.com/git-repo.git
        fetch = +refs/heads/*:refs/remotes/origin/*
[url "http://push.example.com"]
    pushInsteadOf = http://fetch.example.com

也可以使用git命令设置

git config --help
url.<base>.insteadOf
url.<base>.pushInsteadOf
git config url.http://push.example.com.pushInsteadOf http://fetch.example.com

也可以在remote中指定push URL和refs,当push时会使用指定的pushurl和refspec

[remote "<name>"]
        url = <url>
        pushurl = <pushurl>
        push = <refspec>
        fetch = <refspec>

输出格式

#输出日志格式
<flag> <summary> <from> -> <to> (<reason>)
#--porcelain,日志格式
 <flag> \t <from>:<to> \t <summary> (<reason>)
#--progress,将处理信息输出到标准错误输出,方便脚本处理日志

设置自动登录

#设置登录用户名
git config credential.https://example.com.username foo
[credential "https://github.com"]
        username = foo
#记录登录的用户名和密码,存储文件默认在'~/.git-credentials'
git config credential.helper 'cache --timeout=300'
git config credential.helper store
#输入一次密码后,之后就可以不用输入用户名和密码了

#'~/.git-credentials'存储方式为plaintext,可以将文件复制到到其他服务器
https://user:pass@example.com
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值