Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前在“master”上有一个应用程序,我使用了一个经过测试的脚本来生成我的文档。
但是,我想在此脚本在名为“stable”的单独分支上运行后将更改推送到我的应用程序。
我试图创建我的分支然后做一个git checkout stableand git pull origin master。
git checkout stable
git pull origin master
但这些更改不适用。
master签出(并且是最新的)后,您可以使用以下命令从中创建一个分支:
master
git checkout -b Stable
您现在将位于一个名为的分支上,该分支Stable与您的分支等效master。将您的更改(即您的文档)提交到此分支,然后推送,您将拥有您想要的。
Stable