Git命令

1、初始化,该命令将创建一个名为 .git 的子目录,这个子目录含有你初始化的 Git 仓库中所有的必须文件,这些文件是 Git 仓库的骨干。

git init

2、克隆现有的仓库

git clone https://github.com/libgit2/libgit2

3、检查当前文件状态

git status

4、跟踪新文件

git add

5、提交更新

git commit

6、移除文件

git rm

7、移动文件

git mv file_from file_to

8、查看提交历史

git log

9、撤消操作

git commit --amend

10、查看远程仓库

git remote

11、添加远程仓库

git remote add <shortname> <url>

12、从远程仓库中抓取与拉取

这个命令会访问远程仓库,从中拉取所有你还没有的数据。 执行完成后,你将会拥有那个远程仓库中所有分支的引用,可以随时合并或查看。

git fetch <remote>

运行 git pull 通常会从最初克隆的服务器上抓取数据并自动尝试合并到当前所在的分支

13、推送到远程仓库

git push origin master

14、查看某个远程仓库

git remote show <remote>

15、打标签

git tag

16、分支创建

git branch

17、分支切换

git checkout

18、未完待续:https://git-scm.com/book/zh/v2/Git-%E5%88%86%E6%94%AF-%E5%88%86%E6%94%AF%E7%9A%84%E6%96%B0%E5%BB%BA%E4%B8%8E%E5%90%88%E5%B9%B6