美文网首页
git stash apply 指定版本

git stash apply 指定版本

作者: 秋叶_leaf | 来源:发表于2019-11-11 10:15 被阅读0次

如果使用 git stash list 有以下结果:

stash@{0}: WIP on design: f2c0c72... Adjust Password Recover Email
stash@{1}: WIP on design: f2c0c72... Adjust Password Recover Email
stash@{2}: WIP on design: eb65635... Email Adjust
stash@{3}: WIP on design: eb65635... Email Adjust

如果想应用回指定版本,只需

git stash apply n

n 为stah list 结果里面的序号 0、1、2、3

相关文章

  • git stash apply 指定版本

    如果使用 git stash list 有以下结果: 如果想应用回指定版本,只需 n 为stah list 结果里...

  • stash 操作暂存区

    涉及命令:git stash、stash list、git stash apply、git stash drop ...

  • Git Stash

    save stash$ git stash list stash$ git stash list apply st...

  • stash

    git stash ; //暂存 git stash list ;//暂存列表 git stash apply s...

  • 找回pop掉的stash

    git stash pop,不同于git stash apply, 会应用且pop出最近的一次stash,stas...

  • Git stash 技巧

    Git stash常用技巧 git stash save git stash list git stash app...

  • 【Git】stash

    stash git stash // 加入缓存区git stash save "注释"git stash list...

  • Git fixBug

    //回滚单个文件git checkout {版本号} 文件名git add .git commit //stash...

  • 储藏

    查看现有stash : git stash list 移除stash : git...

  • git 缓存的常用方法

    git 缓存的常用方法 git stash2.git stash pop3.git stash list4.git...

网友评论

      本文标题:git stash apply 指定版本

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