知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

linux git设置命令简写

发布时间:2014-09-05 15:23:30作者:知识屋


linux git设置命令简写
 
打开.git/config文件,编辑如下:
Conf代码  www.zhishiwu.com  
[merge]  
    summary = true  
    tool = vimdiff  
[diff]  
    renames = copy  
[color]  
    diff = auto  
    status = true  
    branch = auto  
    interactive = auto  
    ui = auto  
    log = true  
[status]  
    submodulesummary = -1  
[mergetool "vimdiff"]  
    cmd = "vim --noplugin /"$PWD/$MERGED/" /  
          +/":split $PWD/$REMOTE/" +/":set buftype=nowrite/" /  
          +/":vertical diffsplit $PWD/$LOCAL/" +/":set buftype=nowrite/" /  
          +/":vertical diffsplit $PWD/$BASE/" +/":set buftype=nowrite/" /  
          +/":wincmd l/""  
[format]  
    numbered = auto  
[alias]  
    co = checkout  
    ci = commit  
    st = status  
    pl = pull  
    ps = push  
    dt = difftool  
    l = log --stat  
    cp = cherry-pick  
    ca = commit -a  
    b = branch  
 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜