I have moved from perforce to git. Earlier in p4, I could make the changes in my tree visible to others using p4 shelve. Everyone who accessed the same p4 server could see my modifications. But now in git, I'm looking for an equivalent command. I came across git stash, but it allows me to be visible only to me.
So, is there a way to make local changes made by one user visible to everyone else in git?
source
share