赞
踩
git工具很强大,这里记录几个方便的git使用配置
参考文章:git config配置
路径:C:\Users\Administrator/.gitconfig,文本编辑器打开,如下:
[http]
proxy = ****
[user]
name = ***
email = ***
[url "***"]
pushInsteadOf = ***
[alias]
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
ci = commit
co = checkout
st = status
br = branch
df = diff
[merge]
tool = vimdiff
[mergetool]
prompt = false
配置完后,直接保存即可,这里解释下:
git ci <=> git commit
git st <=> git status
git lg -6 <=> git log -6(这条用法非常方便,自己体会吧!)
这里的merge指令是解决冲突用的,我个人比较喜欢用这种方式。git mergetool打开vim编辑文本,习惯就很好用了!
git push origin HEAD:refs/for/develop
,注:如果嫌弃上面的命令太复杂,可以通过配置命令:git config remote.origin.push HEAD:refs/for/develop
git push origin featurn_xxx
)Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。