summaryrefslogtreecommitdiff
path: root/local-pull.c
Commit message (Collapse)AuthorAgeFilesLines
* Do not report size of the object that cannot be written in local-pull.cJunio C Hamano2005-05-091-2/+1
| | | | | | | | | Reporting st.st_size with %ld is simply wrong, as H Peter Anvin says. No other pull drivers report the failure with size anyway, so yank it out. This is a cop-out patch but should be good enough. Signed-off-by: Junio C Hamano <junkio@cox.net>
* [PATCH] Add #include <limits.h> so that git compiles under SolarisThomas Glanzmann2005-05-071-0/+1
| | | | | | | | | | <JC> Editorial Note. We may want to include standard headers in one of those headers everybody includes, e.g. cache.h, to reduce clutters, but this commit is as Thomas posted to the GIT list. Date: Sat, 7 May 2005 10:41:41 +0200 Signed-off-by: Thomas Glanzmann <sithglan@stud.uni-erlangen.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
* Implement -v (verbose) option for pull methods other than local transport.Junio C Hamano2005-05-061-10/+4
| | | | | | | | | | | This moves the private "say()" function to pull.c, renames it to "pull_say()", and introduces a global variable "get_verbosely" that makes the pull backends report what they fetch. The -v option is added to git-rpull and git-http-pull to match git-local-pull. The documentation is updated to describe these pull commands. Signed-off-by: Junio C Hamano <junkio@cox.net>
* Short-cut error return path in git-local-pull.Junio C Hamano2005-05-041-9/+16
| | | | | | | | | When git-local-pull with -l option gets ENOENT attempting to create a hard link, there is no point falling back to other copy methods. With this patch, git-local-pull detects such a case and gives up copying the file early. Signed-off-by: Junio C Hamano <junkio@cox.net>
* [PATCH] git-local-pull updatesJunio C Hamano2005-05-011-24/+41
| | | | | | | | | | | This is to be applied on top of the previous patch to add git-local-pull command. In addition to the '-l' (attempt hardlink before anything else) and the '-s' (then attempt symlink) flags, it adds '-n' (do not fall back to file copy) flag. Also it updates the comments. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
* [PATCH] Add git-local-pull.Junio C Hamano2005-05-011-0/+110
This adds the git-local-pull command as a smaller brother of http-pull and rpull. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>