Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2005-08-24 | [PATCH] Retire git-parse-remote. | Junio C Hamano | 1 | -79/+0 | |
Update git-pull to match updated git-fetch and allow pull to fetch from multiple remote references. There is no support for resolving more than two heads, which will be done with "git octopus". Update "git ls-remote" to use git-parse-remote-script. Signed-off-by: Junio C Hamano <junkio@cox.net> | |||||
2005-08-17 | [PATCH] Be consistent in naming of remote heads | Kris Shannon | 1 | -1/+1 | |
The _remote_name variable used for messages does not need the refs/heads/ prefix included. Signed-off-by: Kris Shannon <kris.shannon@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net> | |||||
2005-07-16 | [PATCH] fetch/pull: short-hand notation for remote repositories. | Junio C Hamano | 1 | -0/+79 | |
Since pull and fetch are done often against the same remote repository repeatedly, keeping the URL to pull from along with the name of the head to use in $GIT_DIR/branches/$name makes a lot of sense. Adopt that convention from Cogito, and try to be compatible when possible; storing a partial URL and completing it with a trailing path may not be understood by Cogito. While we are at it, fix pulling a tag. Earlier, we updated only refs/tags/$tag without updating FETCH_HEAD, and called resolve-script using a stale (or absent) FETCH_HEAD. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org> |