0%

Git常用操作

关于Git操作的常用指令

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
--初始化仓库
$ git init -b 初始分支名
--添加暂存文件
$ git add .
--提交暂存文件
$ git commit -m "提交消息"
--设置远程仓库地址
$ git remote add origin git@github.com:username/xxx.git
--拉取远程仓库到本地
$ git pull origin 分支名
--推送本地提交到远程仓库
$ git push origin 本地分支名:远程分支名

--克隆仓库
$ git clone xxxx@git
$ git fetch `拉取远端分支信息`
--设置或删除跟踪仓库的HEAD,指向指定分支,命令行中的圆括号表示必选其中之一执行
$ git remote set-head origin -a `更新本地 upstream

--查看所有分支
$ git branch -a
--新建本地分支
$ git branch 分支名
--更改本地分支名
$ git branch -m 旧名字 新名字
--删除远程分支
$ git push origin -d 远程分支名
--删除本地分支
$ git branch -d 分支名
--切换分支
$ git checkout 分支名
1
2
--Git配置初始分支名
$ git config --global init.defaultBranch main