I'm using Gitkraken, sometimes I see the message below.
WIP on master: Auto stash before merge of "master" and "origin/master"
What it really means? It usually occurs after I try PULL. Thanks!
I'm using Gitkraken, sometimes I see the message below.
WIP on master: Auto stash before merge of "master" and "origin/master"
What it really means? It usually occurs after I try PULL. Thanks!
This means that, when you started your git pull, you had some modifications which weren't committed.
In this case, git stashes them before pulling, and will reapply them afterwards.
If no extra message appears afterwards : all is good.
It means that your local changes would be compromised by the merge implied by your git pull
and they're automatically stashed beforehand.
If you prefer to avoid this mechanism to kick in, be sure to stash your changes manually yourself or commit them before pulling.