Git基本指令

一、Git的原理

Git 是一个开源的分布式版本控制系统,用于敏捷高效地处理任何或小或大的项目。

Git基本指令_第1张图片Git的原理如图所示:
workplace是指工作区,即本地文件系统
staging是指暂存区,用以隔离工作区和Git仓库
local repository是本地仓库
remote repository是远程仓库

我们的目的是通过git,一层层把代码推送到远程仓库中去,用以记录代码的不同版本及其变化

二、常见Git指令

新建代码库

# 在当前目录新建一个Git代码库`在这里插入代码片`
$ git init

# 下载一个项目和它的整个代码历史
$ git clone [url]

# 新建一个目录,将其初始化为Git代码库
$ git init [project-name]

增加/删除文件

# 添加当前目录的所有文件到暂存区
$ git add .

# 添加指定文件到暂存区
$ git add [file1] [file2] ...
 
# 添加指定目录到暂存区,包括子目录
$ git add [dir]

提交代码

# 提交暂存区到仓库区
$ git commit -m [message]
 
# 提交暂存区的指定文件到仓库区
$ git commit [file1] [file2] ... -m [message]
 
# 提交工作区自上次commit之后的变化,直接到仓库区
$ git commit -a
 
# 提交时显示所有diff信息
$ git commit -v

分支

# 列出所有本地分支
$ git branch
 
# 列出所有远程分支
$ git branch -r
 
# 列出所有本地分支和远程分支
$ git branch -a
 
# 新建一个分支,但依然停留在当前分支
$ git branch [branch-name]
 
# 以远程分支为基础新建一个分支,并切换到该分支
$ git checkout -b [branch] origin/[remote-branch]
 
# 新建一个分支,指向指定commit
$ git branch [branch] [commit]
 
# 切换到指定分支,并更新工作区
$ git checkout [branch-name]
 
# 切换到上一个分支
$ git checkout -
 
# 删除分支
$ git branch -d [branch-name]
 
# 删除远程分支
$ git push origin --delete [branch-name]
$ git branch -dr [remote/branch]

查看信息

# 显示有变更的文件
$ git status
 
# 显示当前分支的版本历史
$ git log

# 显示暂存区和工作区的差异
$ git diff
 
# 显示暂存区和上一个commit的差异
$ git diff --cached [file]

# 显示工作区与当前分支最新commit之间的差异
$ git diff HEAD

# 显示当前分支的最近几次提交
$ git reflog

远程同步

# 下载远程仓库的所有变动
$ git fetch [remote]
 
# 显示所有远程仓库
$ git remote -v
 
# 显示某个远程仓库的信息
$ git remote show [remote]
 
# 取回远程仓库的变化,并与本地分支合并
$ git pull [remote] [branch]
 
# 上传本地指定分支到远程仓库
$ git push [remote] [branch]
 
# 推送所有分支到远程仓库
$ git push [remote] --all

版本回退

# 恢复暂存区的指定文件到工作区
$ git checkout [file]
 
# 恢复某个commit的指定文件到暂存区和工作区
$ git checkout [commit] [file]
 
# 恢复暂存区的所有文件到工作区
$ git checkout .

# 重置暂存区的指定文件,与上一次commit保持一致,但工作区不变
$ git reset [file]
 
# 重置当前分支的指针为指定commit,同时重置暂存区,但工作区不变
$ git reset [commit] 

# 新建一个commit,用来撤销指定commit
# 后者的所有变化都将被前者抵消,并且应用到当前分支
$ git revert [commit]
 
# 暂时将未提交的变化移除,稍后再移入
$ git stash
$ git stash pop

更多指令详见:Git官网

你可能感兴趣的:(git,学习笔记,github,git)