git-clean.shon commit clone: the given repository dir should be relative to $PWD (ced78b3)
   1#!/bin/sh
   2#
   3# Copyright (c) 2005-2006 Pavel Roskin
   4#
   5
   6USAGE="[-d] [-n] [-q] [-x | -X] [--] <paths>..."
   7LONG_USAGE='Clean untracked files from the working directory
   8        -d      remove directories as well
   9        -n      don'\''t remove anything, just show what would be done
  10        -q      be quiet, only report errors
  11        -x      remove ignored files as well
  12        -X      remove only ignored files
  13When optional <paths>... arguments are given, the paths
  14affected are further limited to those that match them.'
  15SUBDIRECTORY_OK=Yes
  16. git-sh-setup
  17
  18ignored=
  19ignoredonly=
  20cleandir=
  21quiet=
  22rmf="rm -f --"
  23rmrf="rm -rf --"
  24rm_refuse="echo Not removing"
  25echo1="echo"
  26
  27while case "$#" in 0) break ;; esac
  28do
  29        case "$1" in
  30        -d)
  31                cleandir=1
  32                ;;
  33        -n)
  34                quiet=1
  35                rmf="echo Would remove"
  36                rmrf="echo Would remove"
  37                rm_refuse="echo Would not remove"
  38                echo1=":"
  39                ;;
  40        -q)
  41                quiet=1
  42                ;;
  43        -x)
  44                ignored=1
  45                ;;
  46        -X)
  47                ignoredonly=1
  48                ;;
  49        --)
  50                shift
  51                break
  52                ;;
  53        -*)
  54                usage
  55                ;;
  56        *)
  57                break
  58        esac
  59        shift
  60done
  61
  62case "$ignored,$ignoredonly" in
  63        1,1) usage;;
  64esac
  65
  66if [ -z "$ignored" ]; then
  67        excl="--exclude-per-directory=.gitignore"
  68        if [ -f "$GIT_DIR/info/exclude" ]; then
  69                excl_info="--exclude-from=$GIT_DIR/info/exclude"
  70        fi
  71        if [ "$ignoredonly" ]; then
  72                excl="$excl --ignored"
  73        fi
  74fi
  75
  76git-ls-files --others --directory $excl ${excl_info:+"$excl_info"} -- "$@" |
  77while read -r file; do
  78        if [ -d "$file" -a ! -L "$file" ]; then
  79                if [ -z "$cleandir" ]; then
  80                        $rm_refuse "$file"
  81                        continue
  82                fi
  83                $echo1 "Removing $file"
  84                $rmrf "$file"
  85        else
  86                $echo1 "Removing $file"
  87                $rmf "$file"
  88        fi
  89done