Please consider editing your post and mark it as obsolete instead. Do you want to delete post?
GIT Auto Stash
Permanently deleted user
Created
While using git, Is it possible when you change to a new or existing branch/changelist/task on PHPStorm to automatically stash the changes and deploy them? I though this feature did exist before.
Well the idea, is when I change a branch in git it automaticlly shevles the changes. An example is bellow:
Master(Branch) -> README.MD
Test(Branch)-> README.MD TEST.MD (New File)
1) When I change from Master to Test I can see README.MD and TEST.MD files/changes. 2) When I change from Test to Master I can only see the README.MD file in the orginal state of the master branch.
I suppose you mean VCS | Update project | Using stash option.
Well the idea, is when I change a branch in git it automaticlly shevles the changes. An example is bellow:
Master(Branch) ->
README.MD
Test(Branch)->
README.MD
TEST.MD (New File)
1) When I change from Master to Test I can see README.MD and TEST.MD files/changes.
2) When I change from Test to Master I can only see the README.MD file in the orginal state of the master branch.
ya, equivalent to with what the old github desktop did