Skip to content

Commit 9a1944d

Browse files
Add --pull and --help option to git_checkout.sh
`--pull` option allows us to checkout all latest updates from repository easily.
1 parent d53bead commit 9a1944d

File tree

1 file changed

+30
-3
lines changed

1 file changed

+30
-3
lines changed

git_checkout.sh

+30-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,42 @@
11
#!/bin/sh
22

3-
if [ $# -ne 1 ]; then
3+
usage()
4+
{
5+
echo "Usage: ./git_checkout.sh [-h|--help] [--pull] BRANCH"
6+
}
7+
8+
WITH_PULL=1
9+
BRANCH=
10+
11+
for opt in $@; do
12+
case ${opt} in
13+
-h|--help)
14+
usage
15+
exit 1
16+
;;
17+
--pull)
18+
WITH_PULL=0
19+
;;
20+
*)
21+
BRANCH=${opt}
22+
;;
23+
esac
24+
shift
25+
done
26+
27+
if [ -z "${BRANCH}" ]; then
428
echo "[ERROR] branch not specified"
5-
echo "Usage: ./git_checkout.sh BRANCH"
29+
usage
630
exit 1
731
fi
832

933
for dir in `find deps/leo_* -maxdepth 0` deps/savanna_commons deps/savanna_agent
1034
do
1135
cd $dir
1236
echo $dir
13-
git checkout $1
37+
git checkout ${BRANCH}
38+
if [ ${WITH_PULL} = 0 ]; then
39+
git pull
40+
fi
1441
cd ../../
1542
done

0 commit comments

Comments
 (0)