We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
--pull
--help
git_checkout.sh
1 parent d53bead commit 9a1944dCopy full SHA for 9a1944d
git_checkout.sh
@@ -1,15 +1,42 @@
1
#!/bin/sh
2
3
-if [ $# -ne 1 ]; then
+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
28
echo "[ERROR] branch not specified"
- echo "Usage: ./git_checkout.sh BRANCH"
29
30
exit 1
31
fi
32
33
for dir in `find deps/leo_* -maxdepth 0` deps/savanna_commons deps/savanna_agent
34
do
35
cd $dir
36
echo $dir
- git checkout $1
37
+ git checkout ${BRANCH}
38
+ if [ ${WITH_PULL} = 0 ]; then
39
+ git pull
40
+ fi
41
cd ../../
42
done
0 commit comments