美文网首页Java
git 修改最后一次commit内容

git 修改最后一次commit内容

作者: 西安法律咨询服务平台与程序员 | 来源:发表于2020-04-28 19:01 被阅读0次

    case 1:如果最后一次commit内容中,手误提交了文件

    1、使用git rm命令删除不需要的文件或文件夹

    git rm  --cached [file] 
    git rm -r --cached [directory]
    

    2、使用git commit --amend命令

    git commit --amend -m [message]
    

    case2:如果最后一次commit内容中,少提交了文件

    1、使用git add命令,将需要提交的文件添加上

    2、使用git commit --amend命令

    git commit --amend -m [message]
    

    相关文章

      网友评论

        本文标题:git 修改最后一次commit内容

        本文链接:https://www.haomeiwen.com/subject/ydqywctx.html