码迷,mamicode.com
首页 > 其他好文 > 详细

git别名

时间:2018-03-24 15:19:49      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:git别名

git别名

创建别名

[root@localhost apeng]# git config --global alias.ci commit
[root@localhost apeng]# git config --global alias.fz branch
[root@localhost apeng]# git config --global alias.sw checkout

查看别名

[root@localhost apeng]# git config --list |grep alias
alias.ci=commit
alias.fz=branch
alias.sw=checkout

将别名加入到这个文件中/root/.gitconfig

[root@localhost apeng]# vim /root/.gitconfig
[user]
        name = apeng
        email = apeng@apenglinux.com
[alias]
        ci = commit
        fz = branch
        sw = checkout

给日志作一个别名

[root@localhost apeng]# git config --global alias.lg "log --color --graph > --pretty=format:‘%Cred%h%Creset > -%C(yellow)%d%Creset %s %Cgreen(%cr) > %C(bold blue)<%an>%Creset‘ --abbrev-commit"

技术分享图片

git别名

标签:git别名

原文地址:http://blog.51cto.com/13480443/2090639

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!