3 # Copyright (c) 2005-2006 Pavel Roskin
8 git-clean [options] <paths>...
10 Clean untracked files from the working directory
12 When optional <paths>... arguments are given, the paths
13 affected are further limited to those that match them.
15 d remove directories as well
16 f override clean.requireForce and clean anyway
17 n don't remove anything, just show what would be done
18 q be quiet, only report errors
19 x remove ignored files as well
20 X remove only ignored files"
29 disabled
="`git config --bool clean.requireForce`"
32 rm_refuse
="echo Not removing"
46 rmf
="echo Would remove"
47 rmrf
="echo Would remove"
48 rm_refuse
="echo Would not remove"
65 usage
# should not happen
71 if [ "$disabled" = true
]; then
72 die
"clean.requireForce set and -n or -f not given; refusing to clean"
75 if [ "$ignored,$ignoredonly" = "1,1" ]; then
76 die
"-x and -X cannot be set together"
79 if [ -z "$ignored" ]; then
80 excl
="--exclude-per-directory=.gitignore"
81 if [ -f "$GIT_DIR/info/exclude" ]; then
82 excl_info
="--exclude-from=$GIT_DIR/info/exclude"
84 if [ "$ignoredonly" ]; then
85 excl
="$excl --ignored"
89 git ls-files
--others --directory $excl ${excl_info:+"$excl_info"} -- "$@" |
90 while read -r file; do
91 if [ -d "$file" -a ! -L "$file" ]; then
92 if [ -z "$cleandir" ]; then
96 $echo1 "Removing $file"
99 $echo1 "Removing $file"