Equivalent command for P4 shelf in GIT

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?

+4
source share
1 answer

Yes. Make your commits on the topic thread, click it, and then tell everyone to look at this thread.

See, for example, the chapter on Branching Workflows in the Git book.

+6
source

All Articles