I want to share my stash with my friend and looking for ways to "upload" my stash to the git repo so that he/she can "download" the stash.
Is that possible and if yes, how to do it?
I want to share my stash with my friend and looking for ways to "upload" my stash to the git repo so that he/she can "download" the stash.
Is that possible and if yes, how to do it?
Create a branch, apply the stash to that branch, then push the branch to a shared repository.
PyCharm has a feature call shelve changes
details i.e. similar to SVN shelve. So if you use this IDE, proceed steps below.
.idea/shelf
folderOther teammates will just git-pull your shelve changes and unshelve
in PyCharm.