我试图在分支B上git rebase
分支A并且存在一些冲突。
git status
显示冲突的文件列表。
# 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: \very_long_path\file1.py
modified: \very_long_path\file2.py
我的工作流程是逐个解析文件并使用git add filename
批准。 git中有一种方法可以通过列表中的位置来引用文件吗? git add FILE~1
,而不是git add \very_long_path\file1.py