diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-23 16:14:26 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-23 16:14:26 +0200 |
commit | 315792498783a7605434a6a2c79958dfe2aea9b4 (patch) | |
tree | a99ab0c8ec02fc4fb87c7edb3b2a0319c2d94b17 /git/stash.sh | |
parent | 284a57f1bb2ebddde484bb1f8c06911e90c41081 (diff) |
Add arguments to stash.sh, remove stash-pop.sh
Diffstat (limited to 'git/stash.sh')
-rwxr-xr-x | git/stash.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/stash.sh b/git/stash.sh index 0175296..93a168d 100755 --- a/git/stash.sh +++ b/git/stash.sh @@ -10,6 +10,6 @@ wd=`pwd` for i in $odb_modules; do echo "stash $i" 1>&2 cd $i - git stash + git stash $* cd $wd done |