git status
给出:
On branch sid-x
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: longpath/x.java
modified: longpath/x.html
modified: longpath/x.py
我想将x.html添加到我的临时区域。除了写出git add longpath/x.py
之外,还有标志或方法吗?
答案 0 :(得分:2)
做git add --interactive
。这将带您进入一个UI,让您可以选择要执行的操作,而无需键入要添加的文件的完整路径(如果这就是您关注的内容)。或者使用GUI,您可以通过单击选择要添加的文件,因此您不必键入路径。或者只是对它进行find
并将xarg传递给git add。