如何使用 vim-fugitive 暂存所有修改过的文件和新文件
How to stage all modified and new files with vim-fugitive
我知道您可以使用 GWrite
暂存当前文件。您还可以使用 GStatus
和 -
暂存您选择的文件。
有没有办法在不使用 GStatus
的情况下 GWrite
所有文件或执行 git add .
?
见:h :Git
,可
Run an arbitrary git command. Similar to :!git [args]
but chdir to the repository tree first.
:Git add .
不是您具体问题的答案,而是我从 github/tpope/vim-fugitive/README.markdown 中指定的一个截屏视频中学到的东西,您可以对所有文件行进行可视化 select,-
将它们全部暂存,然后 cc
提交,所有这些都来自 Gstatus
屏幕。
我想你可以在 -
前加一个数字。例如。 5-
到 stage/unstage 其中 5 个。
我知道您可以使用 GWrite
暂存当前文件。您还可以使用 GStatus
和 -
暂存您选择的文件。
有没有办法在不使用 GStatus
的情况下 GWrite
所有文件或执行 git add .
?
见:h :Git
,可
Run an arbitrary git command. Similar to :!git [args] but chdir to the repository tree first.
:Git add .
不是您具体问题的答案,而是我从 github/tpope/vim-fugitive/README.markdown 中指定的一个截屏视频中学到的东西,您可以对所有文件行进行可视化 select,-
将它们全部暂存,然后 cc
提交,所有这些都来自 Gstatus
屏幕。
我想你可以在 -
前加一个数字。例如。 5-
到 stage/unstage 其中 5 个。