美文网首页
git stash 储藏

git stash 储藏

作者: foolish_hungry | 来源:发表于2018-12-09 11:36 被阅读0次

    添加

    添加储藏

    git stash
    

    添加储藏(包括未追踪文件)

    git stash -u
    

    添加注释的储藏

    git stash push  -m '注释信息'
    

    推荐用法
    添加带有注释和未追踪文件的储藏

    git stash push -u -m '注释信息'
    // -u 表示未追踪的文件也储藏(untracked)
    

    查看

    查看储藏列表

    git stash list
    

    查看第一个储藏

    git stash show 
    

    查看第一个储藏(详细信息)

    git stash show -p
    

    查看某一个储藏(详细信息)

    // 1表示索引值
    git stash show -p --index 1
    

    // stash@{0} 表示储藏名称
    git stash show -p stash@{0}
    

    应用

    应用第一个储藏

    git stash pop
    //或
    git stash apply
    

    ****应用某一个储藏****

    // 0代表索引值
    git stash pop --index 0
    // 或
    git stash apply --index 0
    

    // stash@{0} 表示储藏名称
    git stash pop stash@{0}
    // 或
    git stash apply stash@{0}
    

    删除

    删除第一个储藏

    git stash drop
    

    删除某一个储藏

    git stash drop --index 0
    

    git stash drop stash@{0}
    

    删除全部储藏

    git stash clear
    

    相关文章

      网友评论

          本文标题:git stash 储藏

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