Git 常用命令总结

1、配置 Git

设置用户名和电子邮件

git config --global user.name "用户名"
git config --global user.email "邮箱"

生成 SSH 公钥

ssh-keygen –t rsa –C “email”

2、Git 最基本命令

初始化本地仓库

git init

添加文件到暂存区

git add fileName    // 添加指定文件到暂存区
git add .             // 添加全部文件到暂存区

将暂存区文件提交至本地仓库

git commit -m “commitInfo”

将本地仓库提交至远程仓库

git push

查看仓库状态

git status

查看文件变化

git diff

3、版本回退 / 切换

查看提交的记录信息

git log
git log –pretty=oneline        // 一行内显示

查看版本变动信息(获取commit_id)

git reflog                    // 最前面的为commit_id,用于回退到指定版本

回退到上一版本

git reset –hard HEAD^

回退到指定版本

git reset –hard “commit_id”

4、分支操作(重要)

创建新分支

git branch branch_name

查看所有分支

git branch

切换到指定分支

git switch branch_name

分支合并

git merge branch_name

查看分支合并状况

git log –-graph –pretty=oneline –abbrev-commit

删除分支

git branch -d branch_name

5、结合远程仓库操作

将本地仓库与远程仓库关联(创建仓库方式1.1)

git remote add origin “仓库地址”

将远程仓库拉取到本地仓库(创建仓库方式1.2)

git pull origin master

克隆远程仓库到本地仓库(创建仓库方式2)

git clone url

查看远程仓库分支

git branch -r

将新创建的分支推送到远程仓库

git push origin branch_name        // 后续若需将本地仓库内容提交也执行该命令

将本地仓库内容提交到远程仓库

git push origin branch_name

6、标签管理

给当前版本打上标签

git tag tag_name     // tag_name 一般具有意义,如版本号 V2.0

创建带说明的标签

git tag -a tag_name-m "message" commit_id    // message为标签说明信息,如version2.0 released

查看所有标签

git tag

查找以前的版本(获取commit_id)

git log --pretty=oneline --abbrev-commit

给指定版本打上标签信息

git tag tag_name commit_id       

查看指定标签的版本信息

git show tag_name

你可能感兴趣的:(git,github)