Unable to find stash/apply functionalitit in EGit

42,460

Solution 1

After all I found it, hidden in the "Git Repository view":

enter image description here

Solution 2

With Eclipse Mars (Egit Version 4.0.3) you can access the Stash via click on Project ==> Team ==> Stashes:

EGit Stash

Solution 3

For me, the "AHA" moment was when I realized stashing (in EGit) happens at project level and not at file level. So I spent hours searching in the file context menu with no luck. Right click the project, and there it is...

Solution 4

You can also type CTRL-3 (CMD-3 on Mac) to start quick access and then type "stash" to find and run stash

Share:
42,460
BetaRide
Author by

BetaRide

Developer, maker, youtuber. Visit my youtube channel: https://www.youtube.com/channel/UCN8wBEouFtaAyIjjIH2LjJQ

Updated on October 17, 2020

Comments

  • BetaRide
    BetaRide over 3 years

    I'm working with Eclipse Kepler and EGit 3.0.0. Where can I find the GIT stash/apply functionality.

    I cannot find stash in the package explorer team pop-up nor anywhere in the Team Synchronizing perspective.

  • Lolo
    Lolo over 10 years
    Thanks: I was looking for a way to apply stashed changes and going through the git repo view seems to be the only way. Note however that if you have uncommitted work and do a switch, Eclipse will offer to stash your changes as one of the options, without requiring you to go through the git repo view.