开发者

Removing non-repository files with git?

I'm writing Autotools code and in the process of development, tons of files are generated.

Is there anyway to tell git to remove all file开发者_运维技巧s from a directory that are not part of the repository?


You can use git-clean. This command will remove untracked files/directories. By default, it will only print what it would have removed, without actually removing them.

Given the -f flag to remove the files, and the -d flag to remove empty directories as well :

git clean -df

Also removing ignored files :

git clean -dfx
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜