linux – 是否可以在没有git前缀的情况下运行git命令

前端之家收集整理的这篇文章主要介绍了linux – 是否可以在没有git前缀的情况下运行git命令前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

正如标题所说,是否可以启动一个交互式git shell,其中所有命令都自动以git为前缀?

所以不要这样做:

git fetch
git add
git commit

我希望能够做到这样的事情:

git -i  #start the 'interactive' git shell,not the right command obvIoUsly

fetch   #does git fetch
add     #does git add
commit  #does git commit

git -x  #exit the 'interactive' git shell
最佳答案
我不认为这样的模式是在git中集成的.我建议你检查git-sh.你可以配置它来使用你喜欢的别名.
原文链接:https://www.f2er.com/linux/440323.html

猜你在找的Linux相关文章