github常用命令

github提交一个项目

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 1.github添加新仓库jucdemo2
# 2.添加客户端id_ras.pub秘钥(C:\Users\Czz\.ssh\id_ras.pub)
# 3.添加远程仓库:
# 初始化本地仓库,并提交到本地仓库
$ cd D:\ideawk\jucdemo
$ git init
$ git add .
$ git commit -m 'first commit'
# 关联远程仓库并推送项目
$ git remote add origin git@github.com:line007/jucdemo2.git
# 第一次推送
$ git push -u origin master
# 非第一次推送
$ git push origin master

git checkout远程分支、标签

1
2
3
4
5
命令:git clone --branch [tags标签] [git地址] 
或者 git clone --b [tags标签] [git地址]
例如:git clone -b 1.4.1 https://github.com/jumpserver/coco.git

$ git clone -b v7.4.2 https://github.com/theme-next/hexo-theme-next themes/next