Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2005-07-04 | Make git-fetch-pack actually do all the unpacking etc. | Linus Torvalds | 1 | -14/+48 | |
It returns the result SHA1 on stdout, so you can do remote=$(git-fetch-pack host:dir branchname) and it will unpack the objects and "remote" will be the SHA1 name of the branch on the other side. You can then save that off, or merge it, or whatever. | |||||
2005-07-04 | Make git-fetch-pack and git-upload-pack negotiate needs/haves fully | Linus Torvalds | 1 | -9/+62 | |
Now the only piece missing is actually generating the pack-file. | |||||
2005-07-04 | Commit first cut at "git-fetch-pack" | Linus Torvalds | 1 | -0/+125 | |
It's meant to be used by "git fetch" for the local and ssh case. It doesn't actually do the fetching now, but it does discover the common commit point. |