...

/

Dealing With a Scenario

Dealing With a Scenario

Look into a scenario when one would need to stash away changes for any reason.

Scenario

Here is a basic example of a change I want to “stash”:

1	mkdir lgthw_git_stash_1
2	cd lgthw_git_stash_1
3	git init
4	echo 'Some content' > file1
5	git add file1
6	git commit -am initial
7	echo 'Some changes I am not sure about' >> file1
Terminal 1
Terminal
Loading...

Now imagine I’m in the middle of some work, and Alice lets me know that there’s an important update to the code that I need to pull from BitBucketLike GitHub, Bitbucket is a Git-based source code repository hosting service..

First, you can see what changes you have made ...