正如标题所说,是否可以启动一个交互式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中集成的.我建议你检查
原文链接:https://www.f2er.com/linux/440323.htmlgit-sh
.你可以配置它来使用你喜欢的别名.