3 # Copyright (c) 2005-2006 Pavel Roskin
6 USAGE
="[-d] [-f] [-n] [-q] [-x | -X] [--] <paths>..."
7 LONG_USAGE
='Clean untracked files from the working directory
8 -d remove directories as well
9 -f override clean.requireForce and clean anyway
10 -n don'\''t remove anything, just show what would be done
11 -q be quiet, only report errors
12 -x remove ignored files as well
13 -X remove only ignored files
14 When optional <paths>... arguments are given, the paths
15 affected are further limited to those that match them.'
23 disabled
="`git config --bool clean.requireForce`"
26 rm_refuse
="echo Not removing"
40 rmf
="echo Would remove"
41 rmrf
="echo Would remove"
42 rm_refuse
="echo Would not remove"
67 if [ "$disabled" = true
]; then
68 echo "clean.requireForce set and -n or -f not given; refusing to clean"
72 case "$ignored,$ignoredonly" in
76 if [ -z "$ignored" ]; then
77 excl
="--exclude-per-directory=.gitignore"
78 excl_info
= excludes_file
=
79 if [ -f "$GIT_DIR/info/exclude" ]; then
80 excl_info
="--exclude-from=$GIT_DIR/info/exclude"
82 if cfg_excl
=$
(git config core.excludesfile
) && test -f "$cfg_excl"
84 excludes_file
="--exclude-from=$cfg_excl"
86 if [ "$ignoredonly" ]; then
87 excl
="$excl --ignored"
91 git ls-files
--others --directory \
92 $excl ${excl_info:+"$excl_info"} ${excludes_file:+"$excludes_file"} \
94 while read -r file; do
95 if [ -d "$file" -a ! -L "$file" ]; then
96 if [ -z "$cleandir" ]; then
100 $echo1 "Removing $file"
103 $echo1 "Removing $file"