开发者

Removing non-repository files with git?

开发者 https://www.devze.com 2023-02-12 00:28 出处:网络
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 re

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

精彩评论

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