美文网首页
Git问题总结

Git问题总结

作者: one_mighty | 来源:发表于2017-03-18 19:51 被阅读0次

    一、提交问题

    a、命令:

    $ git commit -m "update the blog"

    b、现象:

    On branch master

    Your branch is up-to-date with 'origin/master'.

    Changes not staged for commit:

    modified:  .idea/workspace.xml

    modified:  blogs.html

    no changes added to commit

    c、方案:

            只有暂存区域的文件(即:文件状态为“Changes to be committed”)才会被提交。正如提示:

    Changes not staged for commit:

    modified:  .idea/workspace.xml

    modified:   blogs.html

    有两个文件被修改,但是没有被提交,通过“git add fileName”命令将已修改文件更新到暂存区域中,如果想撤销修改,可以使用“git checkout -- fileName”命令

    此处可以使用命令:

    $ git add blogs.html

    以及

    $ git add \.idea

    将文件添加到暂存区,再通过命令:

    $ git commit -m "update the blog page"

    以及

    $ git push origin master

    提交到远程库。

    二、提交没有add,commit问题

    error:src refspec master does not match any

    本地版本库为空, 空目录不能提交 (只进行了init, 没有add和commit).

    相关文章

      网友评论

          本文标题:Git问题总结

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