关于Git
关于Git
戈亓一些资料
Git 工作区、暂存区和版本库
Git 工作流程
命令速查
- 初始化
1
git init
- 克隆
1
git clone -b <branch> <repo> <directory>
- branch: 分支(默认main分支,可选参数)
- repo:Git仓库
- directory:本地目录
- 配置
1
2
3
4git config -e # 针对当前仓库
git config -e --global # 针对系统上所有仓库
git config --global user.name "xxx"
git config --global user.email xxx@runoob.com - 添加
1
git add ./ # 添加所有文件
- 分支
1 | git branch # 列出分支 |
- git commit 暂存区内容添加到本地仓库中
1
git commit -m [message]
- 下载远程代码并合并 pull
1
git pull <远程主机名> <远程分支名>:<本地分支名>
- 提交
1
git push <远程主机名> <远程分支名>:<本地分支名>