2006-04-05 08:00:48 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2005-2006 Pavel Roskin
|
|
|
|
#
|
|
|
|
|
2007-11-04 11:30:55 +01:00
|
|
|
OPTIONS_KEEPDASHDASH=
|
|
|
|
OPTIONS_SPEC="\
|
|
|
|
git-clean [options] <paths>...
|
|
|
|
|
|
|
|
Clean untracked files from the working directory
|
|
|
|
|
2006-05-08 21:02:44 +02:00
|
|
|
When optional <paths>... arguments are given, the paths
|
2007-11-04 11:30:55 +01:00
|
|
|
affected are further limited to those that match them.
|
|
|
|
--
|
|
|
|
d remove directories as well
|
|
|
|
f override clean.requireForce and clean anyway
|
|
|
|
n don't remove anything, just show what would be done
|
|
|
|
q be quiet, only report errors
|
|
|
|
x remove ignored files as well
|
|
|
|
X remove only ignored files"
|
|
|
|
|
2006-04-05 08:00:48 +02:00
|
|
|
SUBDIRECTORY_OK=Yes
|
|
|
|
. git-sh-setup
|
2006-12-31 05:32:38 +01:00
|
|
|
require_work_tree
|
2006-04-05 08:00:48 +02:00
|
|
|
|
|
|
|
ignored=
|
|
|
|
ignoredonly=
|
|
|
|
cleandir=
|
2006-05-29 17:06:32 +02:00
|
|
|
rmf="rm -f --"
|
|
|
|
rmrf="rm -rf --"
|
2006-04-05 08:00:48 +02:00
|
|
|
rm_refuse="echo Not removing"
|
|
|
|
echo1="echo"
|
|
|
|
|
2007-11-12 09:27:35 +01:00
|
|
|
disabled=$(git config --bool clean.requireForce)
|
2007-11-02 01:32:04 +01:00
|
|
|
|
2007-09-23 22:42:08 +02:00
|
|
|
while test $# != 0
|
2006-04-05 08:00:48 +02:00
|
|
|
do
|
|
|
|
case "$1" in
|
|
|
|
-d)
|
|
|
|
cleandir=1
|
|
|
|
;;
|
2007-04-24 02:18:16 +02:00
|
|
|
-f)
|
2007-11-12 09:27:35 +01:00
|
|
|
disabled=false
|
2007-04-24 02:18:16 +02:00
|
|
|
;;
|
2006-04-05 08:00:48 +02:00
|
|
|
-n)
|
2007-11-12 09:27:35 +01:00
|
|
|
disabled=false
|
2006-04-05 08:00:48 +02:00
|
|
|
rmf="echo Would remove"
|
|
|
|
rmrf="echo Would remove"
|
|
|
|
rm_refuse="echo Would not remove"
|
|
|
|
echo1=":"
|
|
|
|
;;
|
|
|
|
-q)
|
2007-01-06 11:19:44 +01:00
|
|
|
echo1=":"
|
2006-04-05 08:00:48 +02:00
|
|
|
;;
|
|
|
|
-x)
|
|
|
|
ignored=1
|
|
|
|
;;
|
|
|
|
-X)
|
|
|
|
ignoredonly=1
|
|
|
|
;;
|
2006-05-08 21:02:44 +02:00
|
|
|
--)
|
|
|
|
shift
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
*)
|
2007-11-04 11:30:55 +01:00
|
|
|
usage # should not happen
|
|
|
|
;;
|
2006-04-05 08:00:48 +02:00
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2007-11-12 09:27:35 +01:00
|
|
|
# requireForce used to default to false but now it defaults to true.
|
|
|
|
# IOW, lack of explicit "clean.requireForce = false" is taken as
|
|
|
|
# "clean.requireForce = true".
|
|
|
|
case "$disabled" in
|
|
|
|
"")
|
|
|
|
die "clean.requireForce not set and -n or -f not given; refusing to clean"
|
|
|
|
;;
|
|
|
|
"true")
|
|
|
|
die "clean.requireForce set and -n or -f not given; refusing to clean"
|
|
|
|
;;
|
|
|
|
esac
|
2007-04-24 02:18:16 +02:00
|
|
|
|
2007-11-04 11:30:55 +01:00
|
|
|
if [ "$ignored,$ignoredonly" = "1,1" ]; then
|
|
|
|
die "-x and -X cannot be set together"
|
|
|
|
fi
|
2006-04-05 08:00:48 +02:00
|
|
|
|
|
|
|
if [ -z "$ignored" ]; then
|
|
|
|
excl="--exclude-per-directory=.gitignore"
|
2007-11-14 10:54:43 +01:00
|
|
|
excl_info= excludes_file=
|
2006-04-05 08:00:48 +02:00
|
|
|
if [ -f "$GIT_DIR/info/exclude" ]; then
|
|
|
|
excl_info="--exclude-from=$GIT_DIR/info/exclude"
|
|
|
|
fi
|
2007-11-14 10:54:43 +01:00
|
|
|
if cfg_excl=$(git config core.excludesfile) && test -f "$cfg_excl"
|
|
|
|
then
|
|
|
|
excludes_file="--exclude-from=$cfg_excl"
|
|
|
|
fi
|
2006-04-05 08:00:48 +02:00
|
|
|
if [ "$ignoredonly" ]; then
|
|
|
|
excl="$excl --ignored"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2007-11-14 10:54:43 +01:00
|
|
|
git ls-files --others --directory \
|
|
|
|
$excl ${excl_info:+"$excl_info"} ${excludes_file:+"$excludes_file"} \
|
|
|
|
-- "$@" |
|
2006-04-05 08:00:48 +02:00
|
|
|
while read -r file; do
|
|
|
|
if [ -d "$file" -a ! -L "$file" ]; then
|
|
|
|
if [ -z "$cleandir" ]; then
|
|
|
|
$rm_refuse "$file"
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
$echo1 "Removing $file"
|
|
|
|
$rmrf "$file"
|
|
|
|
else
|
|
|
|
$echo1 "Removing $file"
|
|
|
|
$rmf "$file"
|
|
|
|
fi
|
|
|
|
done
|