1git-upload-pack(1) 2================== 3v0.1, July 2005 4 5NAME 6---- 7git-upload-pack - Send missing objects packed. 8 9 10SYNOPSIS 11-------- 12'git-upload-pack' <directory> 13 14DESCRIPTION 15----------- 16Invoked by 'git-clone-pack' and/or 'git-fetch-pack', learns what 17objects the other side is missing, and sends them after packing. 18 19This command is usually not invoked directly by the end user. 20The UI for the protocol is on the 'git-fetch-pack' side, and the 21program pair is meant to be used to pull updates from a remote 22repository. For push operations, see 'git-send-pack'. 23 24 25OPTIONS 26------- 27<directory>:: 28 The repository to sync from. 29 30Author 31------ 32Written by Linus Torvalds <torvalds@osdl.org> 33 34Documentation 35-------------- 36Documentation by Junio C Hamano. 37 38GIT 39--- 40Part of the link:git.html[git] suite