在我的git repo中,ls -a
的结果是:
.fileInFirstCommit.un~
.fileInSecondCommit.un~
.git
fileInFirstCommit
fileInFirstCommit~
fileInSecondCommit
fileInSecondCommit~
所有这些.un~文件是什么?
答案 0 :(得分:6)
那些是Vim的undofiles
。 undofile
是一项相对较新的功能,允许您存储单个文件的撤消历史记录。 This blog post很好地涵盖了基本想法。另请参阅Vim中的:help new-persistent-undo
。