I git stash
my changes, then I pick the updates up using git stash pop
, but the gitk
still shows the stashed version, what is the right way to pick up the updates?
Asked
Active
Viewed 93 times
0

SQB
- 3,926
- 2
- 28
- 49

user2131316
- 3,111
- 12
- 39
- 53
-
1Seems ok, did you reload the gitk view ? It caches the commit tree before displaying, and thus the stash is visible. – Lohrun Sep 24 '13 at 08:44
-
1Reload gitk's view with `shift-f5` to reread all refs. – knittl Sep 24 '13 at 08:52
-
yes, I reloaded it, but it still shows the stashed version – user2131316 Sep 24 '13 at 09:12
1 Answers
0
Check your stash:
git stash show -p
Pretty sure you're fine, but worth a check. As long as you do it on the same branch it's no problem.

Watercolours
- 393
- 1
- 3
- 19