首页 > 其他 > 详细

git常用命令

时间:2017-06-25 22:59:57      阅读:287      评论:0      收藏:0      [点我收藏+]

准备工作

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常用命令

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!