X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git-status.sh;h=10d781c92f82197845ce30c67f796d99379e93cd;hb=3904848c6ea8815236db66956f6a7d77e13fb384;hp=62a24a9b03a259fa94f61b3cb060c2b99f55e40e;hpb=38cc7ab8144e111b47ac0ad3fcf6cb70d546e473;p=git.git diff --git a/git-status.sh b/git-status.sh index 62a24a9b..10d781c9 100755 --- a/git-status.sh +++ b/git-status.sh @@ -2,7 +2,16 @@ # # Copyright (c) 2005 Linus Torvalds # -. git-sh-setup || die "Not a git archive" + +USAGE='' +SUBDIRECTORY_OK='Yes' + +. git-sh-setup + +if [ "$#" != "0" ] +then + usage +fi report () { header="# @@ -13,7 +22,7 @@ report () { trailer="" while read status name newname do - echo -n "$header" + printf '%s' "$header" header="" trailer="# " @@ -27,7 +36,7 @@ report () { U ) echo "# unmerged: $name";; esac done - echo -n "$trailer" + printf '%s' "$trailer" [ "$header" ] } @@ -41,7 +50,7 @@ git-update-index -q --unmerged --refresh || exit if GIT_DIR="$GIT_DIR" git-rev-parse --verify HEAD >/dev/null 2>&1 then - git-diff-index -M --cached --name-status HEAD | + git-diff-index -M --cached --name-status --diff-filter=MDTCRA HEAD | sed -e ' s/\\/\\\\/g s/ /\\ /g @@ -74,11 +83,11 @@ report "Changed but not updated" "use git-update-index to mark for commit" if test -f "$GIT_DIR/info/exclude" then - git-ls-files -z --others \ + git-ls-files -z --others --directory \ --exclude-from="$GIT_DIR/info/exclude" \ --exclude-per-directory=.gitignore else - git-ls-files -z --others \ + git-ls-files -z --others --directory \ --exclude-per-directory=.gitignore fi | perl -e '$/ = "\0";