I am tracking a remote repository, i.e. I have refs/remotes/joe/master
.
I know would like to get joe's changes as soon as possible into my repository.
I don't want to use fetch
, because I might not be at the computer when he commits. So I tell him: I might be out for shopping, so please just push your changes to refs/remotes/joe/master
.
The reason I want his changes asap in my repo is that he turns off his computer in the evening, so I wouldn't be able to fetch his changes when I come back from shopping.
I know that joe should just setup a bare, public repository, but this is sort of an overhead.
Is pushing to refs/remotes/joes/master
an okay thing to do in such a case?