在 Git-Bash 中我有一个执行两个命令的别名;更新 git 存储库的分支列表,然后打印它们:
alias glb='git remote update origin --prune && git branch -a'
我如何在 ConEmu 中做到这一点?具体来说,康德对于 Windows。
由于 ConEmu 不使用带引号的引号alias
,因此我必须输入 ,alias glb=git remote update origin --prune && git branch -a
它被解释为两个单独的命令,首先是 ,alias glb=git remote update origin --prune
然后是git branch -a
。
答案1
对我来说(在 Windows 上),ConEmu 中的命令分隔符是:
$t
因此你的例子将是:
alias glb=git remote update origin --prune $t git branch -a
笔记: 请务必重新启动您的 conemu 窗口或打开新选项卡以便应用此功能。- 感谢@vetras 的提醒。
参考:http://artandlogic.com/2013/06/making-the-windows-command-prompt-suck-slightly-less/
答案2
打开user-aliases.cmd
\path\to\cmder\config下的文件直接添加别名,然后重启cmder。
glb=git remote update origin --prune $t git branch -a