2005-06-21 18:47:37 +02:00
|
|
|
#!/bin/sh
|
|
|
|
: ${GIT_DIR=.git}
|
|
|
|
old=$(git-rev-parse HEAD)
|
2005-06-21 20:03:11 +02:00
|
|
|
new=
|
2005-06-21 18:59:26 +02:00
|
|
|
force=
|
2005-06-21 20:03:11 +02:00
|
|
|
branch=
|
|
|
|
while [ "$#" != "0" ]; do
|
|
|
|
arg="$1"
|
|
|
|
shift
|
|
|
|
case "$arg" in
|
2005-06-21 18:47:37 +02:00
|
|
|
"-f")
|
2005-06-21 20:03:11 +02:00
|
|
|
force=1
|
2005-06-21 18:47:37 +02:00
|
|
|
;;
|
|
|
|
*)
|
2005-06-21 20:03:11 +02:00
|
|
|
rev=$(git-rev-parse "$arg")
|
|
|
|
if [ -z "$rev" ]; then
|
|
|
|
echo "unknown flag $arg"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [ "$new" ]; then
|
|
|
|
echo "Multiple revisions?"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
new="$rev"
|
|
|
|
if [ -f "$GIT_DIR/revs/heads/$arg" ]; then
|
|
|
|
branch="$arg"
|
|
|
|
fi
|
|
|
|
;;
|
2005-06-21 18:47:37 +02:00
|
|
|
esac
|
|
|
|
i=$(($i+1))
|
|
|
|
done
|
2005-06-21 20:14:47 +02:00
|
|
|
[ -z "$new" ] && new=$old
|
2005-06-21 18:47:37 +02:00
|
|
|
|
2005-06-21 18:59:26 +02:00
|
|
|
if [ "$force" ]
|
2005-06-21 18:47:37 +02:00
|
|
|
then
|
|
|
|
git-read-tree --reset $new &&
|
2005-06-21 18:59:26 +02:00
|
|
|
git-checkout-cache -q -f -u -a
|
2005-06-21 18:47:37 +02:00
|
|
|
else
|
2005-06-21 18:59:26 +02:00
|
|
|
git-read-tree -m -u $old $new
|
2005-06-21 20:03:11 +02:00
|
|
|
fi && [ "$branch" ] && ln -sf "refs/heads/$branch" "$GIT_DIR/HEAD"
|