Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在tiggit 的命令行工具中,您转到状态视图并按下u以暂存文件。我很好奇的是如何在不重复单词的情况下多次执行该操作u。这是否可以仅使用一个组合键来暂存多个文件或所有文件?
tig
u
虽然不可能开箱即用,但您可以通过tigrc文件对其进行配置。例如,假设您在舞台视图中时,希望将A键映射到git add -Abash 命令。以下是您需要添加到tigrc文件中的内容:
A
git add -A
tigrc
bind status A @git add -A
语法非常简单,@标志只是意味着不会显示命令输出。
@