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