博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git在terminal中自动补全
阅读量:4993 次
发布时间:2019-06-12

本文共 518 字,大约阅读时间需要 1 分钟。

1. curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash

2. 在~/.bash_profile中加如下内容:

if [ -f ~/.git-completion.bash ]; then . ~/.git-completion.bash fi

3. If this doesn't work off the bat, you may need to run chmod -X ~/.git-completion.bash to give the script permission to run.

4. Restart terminal

详细见:http://apple.stackexchange.com/questions/55875/git-auto-complete-for-branches-at-the-command-line

 

转载于:https://www.cnblogs.com/ouyangfang/p/4096800.html

你可能感兴趣的文章
自己动手写字符串库函数 一(C语言实现) 分类: C语言学习 ...
查看>>
说说接口封装
查看>>
Linux Supervisor的安装与使用入门---SuSE
查看>>
C#将Word转换成PDF方法总结(基于Office和WPS两种方案)
查看>>
oracle查锁表
查看>>
PHP SSH2 不支持 IdentityFile
查看>>
eclipse 僵死/假死 问题排查及解决
查看>>
番茄时间
查看>>
四位计算机的原理及其实现【转】
查看>>
mediawiki简易安装文档
查看>>
Ubuntu server 命令备忘
查看>>
yum常用操作
查看>>
MES系统框架及MES开源框架|C/S框架网软著产品
查看>>
以boost::function和boost:bind取代虚函数
查看>>
linux 下启动SVN服务
查看>>
vue框架学习
查看>>
现代计算机接口实验 (三)8255实验
查看>>
spring——获取ClassLoader
查看>>
javascript函数
查看>>
luogu4093 序列 (cdq分治优化dp)
查看>>