Is it possible to use git stash command from Visual Studio

Is it possible to use git stash command from Visual Studio

In VS2019 (not in VS2017 or before) in the Team Explorer window, you can select Changes. Right next to the Commit button, there is a Stash…

In Visual Studio 2017 this feature is not available by default, but theres an extension for this:

https://marketplace.visualstudio.com/items?itemName=vii.GitStashExtension

Is it possible to use git stash command from Visual Studio

Yes

Git Stash:

Git stash temporarily shelves (or stashes) changes youve made to your working copy so you can work on something else, and then come back and re-apply them later on. Stashing is handy if you need to quickly switch context and work on something else, but youre mid-way through a code change and arent quite ready to commit.

enter

Stashing is available in VS 2019 and later versions.

  1. Go to Git changes window Ctrl + Alt + F7
  2. Now press the drop down key near Commit All or Commit staged button to see the stashing options

Option 2:
You can use this option Stash All and Keep Staged (--keep-index) by default

enter

Option 1:
Only if you want to stash untracked files like Git ignored files or Files which are not included into project then go for this option

enter

You can keep/save multiple stashes with description like below:

enter

Retrieving a stash:
You have two options, either to Apply or Pop.

Apply will retrieve the stash but wont delete the stash but Pop (Apply + Delete) will retrieve the stash and will also delete it.

enter

Again, Under Apply/Pop you gonna see two options:

  1. Apply/Pop and restore staged (--index)

Always use this option by default. This means while stashing if you had some files in changes and some files in staged, itll be restored as such to changes and staged.

  1. Apply/Pop all as unstaged

If you use this option, while stashing if you had some files in changes and some files in staged, all of these files now will be clubbed to Changes.

enter

Related posts:

Leave a Reply

Your email address will not be published. Required fields are marked *