Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: c99ec048bf386ed2b28086cb3756af2dc91fc3d2 authored by Junio C Hamano on 18 October 2005, 00:46:35 UTC
GIT 0.99.8e
Tip revision: c99ec04
git-add.sh
#!/bin/sh

show_only=
verbose=
while : ; do
  case "$1" in
    -n)
	show_only=true
	verbose=true
	;;
    -v)
	verbose=true
	;;
    *)
	break
	;;
  esac
  shift
done

GIT_DIR=$(git-rev-parse --git-dir) || exit
global_exclude=
if [ -f "$GIT_DIR/info/exclude" ]; then
   global_exclude="--exclude-from=$GIT_DIR/info/exclude"
fi
for i in $(git-ls-files --others \
	$global_exclude --exclude-per-directory=.gitignore \
	"$@")
do
   [ "$verbose" ] && echo "  $i"
   [ "$show_only" ] || git-update-index --add -- "$i" || exit
done
back to top