简体   繁体   中英

Git command line equivalent of GitHub app's magic stashing?

According to the GitHup app documentation, " when you switch branches, GitHub [for Mac] performs magic stashing " (eg, see the end of this page).

Does anyone know the git command line equivalent of this "magic stashing"?

Suppose you are working on the branch current-branch . Basically, what happens in Git-terms:

git stash
git checkout other-branch

Then, when you checkout current-branch again. The following happens

git stash pop

The git stash stores the uncommitted changes in the working directory. When you return the branch, a git stash pop is used to grab the uncommitted changes from the stash and place them on top of the current-branch

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