zoukankan      html  css  js  c++  java
  • git中常用命令的总结

    一、git stash 

    1、git  stash

    保存当前工作进度,会把暂存区和工作区的改动保存起来。执行完这个命令后,在运行git status命令,就会发现当前是一个干净的工作区,没有任何改动。使用git stash save 'message...'可以添加一些注释

    2、git stash list

    显示保存进度的列表。也就意味着,git stash命令可以多次执行。

    3、git stash pop [–index] [stash_id]

    .   git stash pop 恢复最新的进度到工作区。git默认会把工作区和暂存区的改动都恢复到工作区。
    .   git stash pop --index 恢复最新的进度到工作区和暂存区。(尝试将原来暂存区的改动还恢复到暂存区)
    .   git stash pop stash@{1}恢复指定的进度到工作区。stash_id是通过git stash list命令得到的
        通过git stash pop命令恢复进度后,会删除当前进度。

    4、git stash apply [–index] [stash_id]

        除了不删除恢复的进度之外,其余和git stash pop 命令一样。

    5、git stash drop [stash_id]

        删除一个存储的进度。如果不指定stash_id,则默认删除最新的存储进度。

    6、git stash clear

        删除所有存储的进度。

  • 相关阅读:
    this.$nextTick()的原理与使用场景
    vue中通过方法返回data中的对象是这个{__ob__: Observer}
    3月23日学习日志
    3月22日学习日志
    3月19日学习日志
    3月18日学习日志
    3月17日学习日志
    3月16日学习日志
    3月15日学习日志
    3月12日学习日志
  • 原文地址:https://www.cnblogs.com/ricklz/p/11489850.html
Copyright © 2011-2022 走看看