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

git 常用命令

时间:2020-06-19 21:11:11      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:版本   glob   命令   常用命令   conf   版本管理   res   check   comm   

配置用户信息

  git config --global user.name ‘xxxx‘

  git config --global user.email ‘sfasd@ksyun.com‘

下载(拉取)代码库

  git clone git@github.com:账号名/项目名.git

与远程交互

从远程库获取到本地

  git pull

将本地提交远程库

  git push origin master

本地版本管理(工作区<---->暂存区<---->仓库区)

提交

  【工作区】--->git add 文件名--->【暂存区】--->git commit -m "备注" 文件名--->【仓库区】

回退

  【仓库区】--->git reset 版本【暂存区】--->git checkout--->【工作区】

 

git 常用命令

标签:版本   glob   命令   常用命令   conf   版本管理   res   check   comm   

原文地址:https://www.cnblogs.com/zhangmingda/p/13166193.html

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