git:git_stash
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
git:git_stash [2016/11/21 12:30] – peter | git:git_stash [2019/11/29 15:10] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== GIT - git stash ====== | ||
- | Keep in mind when modifying or adding new files on different branches, if there isn't a commit, those changes will " | ||
- | |||
- | When you perform a stash, it's a merge commit. | ||
- | |||
- | <code git> | ||
- | # This command will run " | ||
- | git stash pop | ||
- | </ | ||
- | |||
- | |||
- | <code git> | ||
- | git init | ||
- | Initialized empty Git repository in / | ||
- | |||
- | echo " | ||
- | git add bacon.txt | ||
- | git commit -m " | ||
- | [master (root-commit) 6d2649a] initial commit | ||
- | 1 file changed, 1 insertion(+) | ||
- | | ||
- | |||
- | ls | ||
- | bacon.txt | ||
- | |||
- | echo " | ||
- | git stash | ||
- | Saved working directory and index state WIP on master: 6d2649a initial commit | ||
- | HEAD is now at 6d2649a initial commit | ||
- | |||
- | git stash list | ||
- | stash@{0}: WIP on master: 6d2649a initial commit | ||
- | |||
- | git show stash@{0} | ||
- | commit d1525 | ||
- | </ |
git/git_stash.1479731429.txt.gz · Last modified: 2020/07/15 09:30 (external edit)