美文网首页
GIT 常用命令

GIT 常用命令

作者: 王东磊_2e30 | 来源:发表于2019-04-10 18:01 被阅读0次

# GIT 常用命令

## 远程仓库下载命令

- 直接下载

  ```shell

  git clone url

  ```

- 下载分支

  ```shell

  git clone -b [branchname] url

  ```

## 分支操作

- 查看本地分支

```shell

git branch

```

- 查看远程分支

```shell

git branch -r

```

- 创建本地分支

```shell

git branch [name]

```

- 切换分支

```shell

git checkout [name]

```

- 删除分支

```shell

git branch -d [name]

```

- 创建远程分支

```shell

git push origin [name]

```

## 拉取操作

- 直接拉取

```shell

git pull

```

- 有选择的拉取

```shell

git pull origin master

```

## 提交命令

- 直接提交

```shell

git add .

git commit -m "备注"

git push

```

- 选择分支提交

```shell

git add .

git commit -m "备注"

git push origin [name]

```

相关文章

网友评论

      本文标题:GIT 常用命令

      本文链接:https://www.haomeiwen.com/subject/jdqgrqtx.html