mirror of
https://github.com/git/git.git
synced 2024-11-17 22:44:49 +01:00
Merge branch 'lt/dirwalk' into next
* lt/dirwalk: Remove old "git-add.sh" remnants
This commit is contained in:
commit
9c0f482361
2 changed files with 2 additions and 58 deletions
4
Makefile
4
Makefile
|
@ -113,7 +113,7 @@ SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
|
||||||
### --- END CONFIGURATION SECTION ---
|
### --- END CONFIGURATION SECTION ---
|
||||||
|
|
||||||
SCRIPT_SH = \
|
SCRIPT_SH = \
|
||||||
git-add.sh git-bisect.sh git-branch.sh git-checkout.sh \
|
git-bisect.sh git-branch.sh git-checkout.sh \
|
||||||
git-cherry.sh git-clean.sh git-clone.sh git-commit.sh \
|
git-cherry.sh git-clean.sh git-clone.sh git-commit.sh \
|
||||||
git-fetch.sh \
|
git-fetch.sh \
|
||||||
git-format-patch.sh git-ls-remote.sh \
|
git-format-patch.sh git-ls-remote.sh \
|
||||||
|
@ -170,7 +170,7 @@ PROGRAMS = \
|
||||||
|
|
||||||
BUILT_INS = git-log$X git-whatchanged$X git-show$X \
|
BUILT_INS = git-log$X git-whatchanged$X git-show$X \
|
||||||
git-count-objects$X git-diff$X git-push$X \
|
git-count-objects$X git-diff$X git-push$X \
|
||||||
git-grep$X
|
git-grep$X git-add$X
|
||||||
|
|
||||||
# what 'all' will build and 'install' will install, in gitexecdir
|
# what 'all' will build and 'install' will install, in gitexecdir
|
||||||
ALL_PROGRAMS = $(PROGRAMS) $(SIMPLE_PROGRAMS) $(SCRIPTS)
|
ALL_PROGRAMS = $(PROGRAMS) $(SIMPLE_PROGRAMS) $(SCRIPTS)
|
||||||
|
|
56
git-add.sh
56
git-add.sh
|
@ -1,56 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
USAGE='[-n] [-v] <file>...'
|
|
||||||
SUBDIRECTORY_OK='Yes'
|
|
||||||
. git-sh-setup
|
|
||||||
|
|
||||||
show_only=
|
|
||||||
verbose=
|
|
||||||
while : ; do
|
|
||||||
case "$1" in
|
|
||||||
-n)
|
|
||||||
show_only=true
|
|
||||||
;;
|
|
||||||
-v)
|
|
||||||
verbose=--verbose
|
|
||||||
;;
|
|
||||||
--)
|
|
||||||
shift
|
|
||||||
break
|
|
||||||
;;
|
|
||||||
-*)
|
|
||||||
usage
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
break
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
shift
|
|
||||||
done
|
|
||||||
|
|
||||||
# Check misspelled pathspec
|
|
||||||
case "$#" in
|
|
||||||
0) ;;
|
|
||||||
*)
|
|
||||||
git-ls-files --error-unmatch --others --cached -- "$@" >/dev/null || {
|
|
||||||
echo >&2 "Maybe you misspelled it?"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if test -f "$GIT_DIR/info/exclude"
|
|
||||||
then
|
|
||||||
git-ls-files -z \
|
|
||||||
--exclude-from="$GIT_DIR/info/exclude" \
|
|
||||||
--others --exclude-per-directory=.gitignore -- "$@"
|
|
||||||
else
|
|
||||||
git-ls-files -z \
|
|
||||||
--others --exclude-per-directory=.gitignore -- "$@"
|
|
||||||
fi |
|
|
||||||
case "$show_only" in
|
|
||||||
true)
|
|
||||||
xargs -0 echo ;;
|
|
||||||
*)
|
|
||||||
git-update-index --add $verbose -z --stdin ;;
|
|
||||||
esac
|
|
Loading…
Reference in a new issue