On Fri, Dec 18, 2009 at 12:38 PM, Eugene Sajine <euguess@xxxxxxxxx> wrote: > Yes. I was trying to change the HEAD on the bare remote (origin) repo > and the concept here is really confusing. The remote command is about updating things under .git/refs/remotes, not about updating a remote server. For updating a remote server, there is really only push. Clear as mud? > Firstly, when i cloned from some repo "clone" comand is setting HEAD > branch for remote in accordance to where the HEAD is pointing on > origin side. I just recently realized that and i'm not sure it is best > thing to do - i think it should default to origin/master first, if it > doesn't exist then to where the HEAD is pointing. It is expected that the person setting up the bare repo is the person who knows best which is the "default" branch. Which is why clone uses the remote HEAD as the default branch to checkout. But, if you don't like that, you can always use: % git clone -b master ... And you'll get master checked out instead of whatever the remote HEAD is. > Secondly, I don't really understand what is the purpose of "git remote > set-head" if the change cannot be transferred to the actual origin > repo, so it will start serving another branch as default? Hmm, the man page says: set-head Sets or deletes the default branch ($GIT_DIR/remotes/<name>/HEAD) for the named remote. Having a default branch for a remote is not required, but allows the name of the remote to be specified in lieu of a specific branch. For example, if the default branch for origin is set to master, then origin may be specified wherever you would normally specify origin/master. This seems clear to me, but I guess if you expect that "git remote" updates the remote server I can see some confusion. Perhaps the DESCRIPTION for git remote should include something like: "This command updates the local repository only. For updating a remote repository, see git push." > I might not > have access to the server to perform git symbolic-ref on my bare repo > (imagine the repo on github), so it might be not an option. Understood. I'm not sure whether the send-pack/receive-pack protocol supports the notion of "I want to change what HEAD points to." j. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html