show/hide this revision's text 2 typo

In the very latest feature release, 1.6.4, Git gained the ability to have a remote pull from one URL and push to another, using the remote.name.pushurl config setting. I can imagine weird behavior if the push-repository doesn't track the pull-repository, but I suspect Git will just try to fast-forward the push-repository from the current/tracking/matching branch(es) without regard for what it will pull when it asks the remote of the same name.

For instance, if you wnted wanted to pull via anonymous git protocol, but push via SSH (maybe you need a value off a SecurID token or something to authenticate):

[remote "myremote"]
    url = git://server/path
    pushurl = user@server:/path
show/hide this revision's text 1

In the very latest feature release, 1.6.4, Git gained the ability to have a remote pull from one URL and push to another, using the remote.name.pushurl config setting. I can imagine weird behavior if the push-repository doesn't track the pull-repository, but I suspect Git will just try to fast-forward the push-repository from the current/tracking/matching branch(es) without regard for what it will pull when it asks the remote of the same name.

For instance, if you wnted to pull via anonymous git protocol, but push via SSH (maybe you need a value off a SecurID token or something to authenticate):

[remote "myremote"]
    url = git://server/path
    pushurl = user@server:/path