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

Git常用命令(二)

时间:2020-06-26 14:51:34      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:撤销   res   跳过   修改   包括   git   mes   显示   直接   

# 提交暂存区到仓库区
$ git commit -m [message]

# 提交暂存区的指定文件到仓库区
$ git commit [file1] [file2] ... -m [message]

# 提交工作区自上次commit之后的变化,直接到仓库区,跳过了add,对新文件无效
$ git commit -a

# 提交时显示所有diff信息
$ git commit -v

# 使用一次新的commit,替代上一次提交
# 如果代码没有任何新变化,则用来改写上一次commit的提交信息
$ git commit --amend -m [message]

# 重做上一次commit,并包括指定文件的新变化
$ git commit --amend [file1] [file2] ...

#撤销上一次的提交

git reset --hard HEAD~1

撤销提交
git revert <commit-id>
这条命令会把指定的提交的所有修改回滚,并同时生成一个新的提交。

Git常用命令(二)

标签:撤销   res   跳过   修改   包括   git   mes   显示   直接   

原文地址:https://www.cnblogs.com/tangmai/p/13194607.html

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