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

git常用命令

时间:2017-06-25 23:08:06      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:github   font   内容   命令   git   mail   com   lob   user   

准备工作

git clone url / ssh  ----------------------------------------------------------------------从github中下载项目

git config  --global user.name "pomelott"-----------------------------------------配置本机的全局用户名为 pomelott

git config --global user.email  "pomelott@163.com"--------------------------------配置本机的全局用户的邮箱为  pomelott@163.com

git config --global user.name / user.email-------------------------------------------查看用户名/邮箱

git config --list-----------------------------------------------------------------------------查看配置项列表

 

项目开发


git status--------------------------查看当前工作区与暂存区状态

git add  index.html---------------------将文件从工作区提交到暂存区

git add . ----------------------------------将修改过的文件全部提交到暂存区

git reset HEAD index.html----------将提交至暂存区的文件撤回至工作区

git commit  -------------------将暂存区内容提交到版本库

git commit -m "注释" ------------------------------提交到版本库时,直接在命令行添加注释

git commit -a -m "注释"-------------------------------连续将修改的文件从工作区提交至暂存区再提交至版本库

git  log--------------------------------------------------查看提交日志

 

git常用命令

标签:github   font   内容   命令   git   mail   com   lob   user   

原文地址:http://www.cnblogs.com/pomelott/p/7078379.html

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