-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
/
Copy pathgitHelp.sh
executable file
·45 lines (42 loc) · 1.21 KB
/
gitHelp.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env bash
while true; do
echo " ############## input command code #################"
echo " # [1] Git Push #"
echo " # [2] Git Push And Merge to Master #"
echo " # [other] exit #"
echo " ###################################################"
read which
case $which in
1)
curBranch=$(git symbolic-ref --short -q HEAD)
gitPush $curBranch
;;
2)
curBranch=$(git symbolic-ref --short -q HEAD)
gitPush $curBranch
echo "git checkout master"
echo $(git checkout master)
echo "git merge $branchName"
echo $(git merge $branchName)
echo "git push origin master"
echo $(git push origin master)
echo "git checkout $branchName"
echo $(git checkout $branchName)
;;
*)
echo "88"
break
;;
esac
done
function gitPush() {
curBranch=$1
echo "curBranch = $curBranch"
echo "git add -A"
echo $(git add -A)
date=$(date "+%m/%d")
echo "git commit -m \"see $date log\""
echo $(git commit -m "see $date log")
echo "git push origin $curBranch"
echo $(git push origin $curBranch)
}