Skip to content

Commit cf8ff38

Browse files
committed
bobi
1 parent 0570cd4 commit cf8ff38

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

group04/120549547/shell.sh

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,17 @@
22

33
git remote -v
44
read anykey
5-
git fetch upstream #抓取上游代码
6-
git merge upstream/master #代码合并
5+
echo "抓取上游代码"
6+
git fetch upstream
7+
echo "代码合并"
8+
git merge upstream/master
79
read anykey
8-
9-
git add -A . #添加代码
10+
echo "添加代码"
11+
git add -A .
1012
read anykey
1113
git commit -m "bobi"
14+
15+
echo "推送到githup"
1216
read anykey
13-
git push origin master #推送到githup
17+
git push origin master
1418
read anykey

0 commit comments

Comments
 (0)