码迷,mamicode.com
首页 > 其他好文 > 详细

Git常用命令

时间:2020-01-12 11:45:25      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:切换   工作   适用于   check   xxx   git add   设置   创建   reset   

适用于GitHub和GitLab

基本操作

设置用户名和邮箱

git config --global user.name  "xxxx"
git config --global user.email  "xxxx"

克隆一个本地库

git clone ***

添加文件到缓存

git add ./

查看修改

git status

上传文件到工作区

git commit -m "注释"

回到上一个版本

git reset --head HEAD^

删除文件

git rm ***

分支管理

查看本地分支

git branch

查看远程分支

git branch -a 

切换分支

git checkout ***

创建并切换分支

git checkout -b ***

推送本地分支到远程

git push origin ***:***

推送到远程分支

git push origin ***

删除分支

git branch -d ***

合并指定分支到当前分支

git merge ***

Git常用命令

标签:切换   工作   适用于   check   xxx   git add   设置   创建   reset   

原文地址:https://www.cnblogs.com/ruanshuai/p/12182051.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!