告诉 git 在 ubuntu 中忽略以 ~ 结尾的文件

告诉 git 在 ubuntu 中忽略以 ~ 结尾的文件

我不确定这是否是 ubuntu 独有的,因为我刚从 Windows 切换过来。如果我应该在其他地方询问,请告诉我。

我正在对一些本地存储库使用版本控制。有些文件末尾有一个 ~,而我不需要这些文件。例如,我同时拥有 test.m 和 test.m~。其他文本文件也有同样的问题。

我想在 .gitignore 中包含以 ~ 结尾的所有文件,但我不确定如何继续。

答案1

.gitignore 文件中的一行*~应该可以做到这一点。以下是我的 yelp-tools git clone 的默认 .gitignore 文件中的示例:

$ cat /home/doug/temp-yelp-git/yelp-tools/.gitignore
*~
INSTALL
Makefile
Makefile.in

/aclocal.m4
/autom4te.cache
/ChangeLog
/config.guess
/config.log
/config.status
/config.sub
/configure
/install-sh
/intltool-extract.in
/intltool-merge.in
/intltool-update.in
/missing

/tools/yelp-build
/tools/yelp-check
/tools/yelp-new
/xslt/mal-ncx.xsl
/xslt/mal-opf.xsl

相关内容