diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-02-07 19:05:43 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-02-07 19:05:43 +0200 |
commit | b76929b470ece3c72283b0fd9830c798b44dc3c8 (patch) | |
tree | 272e59f7297a25ab9a02d8657af5c69a490b84f2 /git | |
parent | 8ae023f40e28d98cc8d72e378fdcdd87b3bf4109 (diff) |
Use full command names instead of aliases
Diffstat (limited to 'git')
-rwxr-xr-x | git/commit.sh | 2 | ||||
-rwxr-xr-x | git/stat.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/git/commit.sh b/git/commit.sh index eb0613b..deecada 100755 --- a/git/commit.sh +++ b/git/commit.sh @@ -31,7 +31,7 @@ for i in $modules; do echo "commit $i" 1>&2 cd $i git add . - git ci -F $msg_file + git commit -F $msg_file cd $wd done diff --git a/git/stat.sh b/git/stat.sh index 8e90a27..39eb081 100755 --- a/git/stat.sh +++ b/git/stat.sh @@ -10,6 +10,6 @@ wd=`pwd` for i in $modules; do echo "stat $i" 1>&2 cd $i - git stat + git status cd $wd done |