简体   繁体   中英

How to push to different branch - GitHub Desktop

How can I download the project from one brunch, and then push my changes to a new branch using GitHub Desktop ?

If after making changes I'm trying to switch to another branch I see an error message: 在此处输入图片说明

git stash - will save your changes then
git checkout branch_name - checkout other branch
git stash apply - will apply your saved changes

then commit like you normally would

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM