git-dos

工作中用到的 git 命令 dos

博客链接

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
github创建静态页面发布静态页面
1查看远程分支
git branch -va
2切换远程分支
git checkout -t origin/gh-pages
3发布静态网页
add -> commit -> push
-----------------------------
1查看当前分支
git branch
* gh-pages
2添加文件到库中
git commit -a -m "first commit"
3提交代码到远程分支
git push origin gh-pages
-----------------------------
创建文件夹
git init
git add README.md
git remote add origin https://git.coding.net/BlankCat/elephant-blog-api.git
git push -u origin master
第二次
git add *
git commit -m “zjf”
git push