美文网首页GitGit使用Git
git stash 常用三种模式

git stash 常用三种模式

作者: 可柯酱 | 来源:发表于2019-02-12 20:32 被阅读1次

git stash (暂存当前工作区,仅暂存当亲啊git track的文件,最常用)

git stash --include-untracked (当本地某些untracked的文件和remote origin里的同名文件冲突时,会用到这个模式去暂存)

git stash --all  (前两个命令的并集:which stashes all files, including untracked and ignored files. 一般用不到)

Ref: https://stackoverflow.com/questions/835501/how-do-you-stash-an-untracked-file

相关文章

网友评论

    本文标题:git stash 常用三种模式

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