美文网首页Git入门指导
01 SourceTree入门【状态识别】

01 SourceTree入门【状态识别】

作者: 码农二哥 | 来源:发表于2020-03-01 10:25 被阅读0次

    配置 .gitignore

    • 在跟目录创建 .gitignore文件
    • 如果发现.gitignore不生效,执行命令:
    git rm -r --cached .
    git add .
    git commit -m ‘update .gitignore’
    

    本地master分支比远程master分支新一个commit


    image.png

    完整的操作记录


    feature_b分支和本地master在同一个节点(the same)

    image.png

    修改feature_b分支但不提交(即:不add、commit)

    image.png

    把feature_b分支的未commit的内容commit

    image.png

    在feature_a分支创建aa.txt文件但不commit

    image.png
    • feature_a的节点更靠上了(途中灰色节点)

    commit feature_a的改动

    image.png

    相关文章

      网友评论

        本文标题:01 SourceTree入门【状态识别】

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