Signed-off-by: Felipe Contreras <felipe.contreras@xxxxxxxxx> --- Makefile | 1 + git-stage.sh | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 0 deletions(-) create mode 100644 git-stage.sh diff --git a/Makefile b/Makefile index 0c3de6b..a1837fc 100644 --- a/Makefile +++ b/Makefile @@ -291,6 +291,7 @@ SCRIPT_SH += git-rebase.sh SCRIPT_SH += git-repack.sh SCRIPT_SH += git-request-pull.sh SCRIPT_SH += git-sh-setup.sh +SCRIPT_SH += git-stage.sh SCRIPT_SH += git-stash.sh SCRIPT_SH += git-submodule.sh SCRIPT_SH += git-web--browse.sh diff --git a/git-stage.sh b/git-stage.sh new file mode 100644 index 0000000..a5b3ad8 --- /dev/null +++ b/git-stage.sh @@ -0,0 +1,28 @@ +#!/bin/sh + +case "$1" in +add) + shift + git add $@ + ;; +rm) + shift + git rm --cached $@ + ;; +diff) + shift + git diff --cached $@ + ;; +import) + shift + git ls-files --modified --others --exclude-standard -z | \ + git update-index --add --remove -z --stdin + ;; +ls) + shift + git ls-files --stage $@ + ;; +*) + git add $@ + ;; +esac -- 1.6.2.2.406.g45db3f -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html