text 存储更改,创建新分支,对新分支进行更改

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 存储更改,创建新分支,对新分支进行更改相关的知识,希望对你有一定的参考价值。

Save current changes to the stash
git stash


Checkout the branch where you want to apply the changes
git checkout -b <branch_name>


See the files which are modified in the stash.
git stash show


Print the stashed changes.
git stash show -p


Bring stashed changes to staged in the current branch.
git stash pop


To verify the changes are stagged to the current branch
git status

以上是关于text 存储更改,创建新分支,对新分支进行更改的主要内容,如果未能解决你的问题,请参考以下文章

git log 包含另一个分支的提交,如何在分支之间分离提交

如何将我当前的更改提交到 Git 中的不同分支 [重复]

创建没有本地提交的新分支

尽管提交,Git 创建了一个新分支......如何解决这个问题?

如何在 Git 中创建新的本地分支?

在任意点设计中心创建分支以修改 RAML 更改