I used to work with GIT and now I cannot find the solution to my specific problem:
When I create branch from master with git checkout -b for example "feature/my-branch" and I do local changes on that branch, checking out master will clear that changes and bring back clean master branch. Another git checkout feature/my-branch will bring back local changes.
From today this does not work. This was like autoStash function.
How can I re-enable this?
Edit1: Now when I checkout master from my feature branch, the changes are kept and not discarded (or stashed).