| Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 1 | git-send-pack(1) |
| 2 | ================ |
| 3 | |
| 4 | NAME |
| 5 | ---- |
| Junio C Hamano | ee1e428 | 2007-02-04 08:32:04 | [diff] [blame] | 6 | git-send-pack - Push objects over git protocol to another repository |
| Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
| Junio C Hamano | 15567bc | 2011-07-23 00:51:59 | [diff] [blame] | 11 | [verse] |
| Junio C Hamano | f727901 | 2011-08-18 06:13:13 | [diff] [blame] | 12 | 'git send-pack' [--all] [--dry-run] [--force] [--receive-pack=<git-receive-pack>] [--quiet] [--verbose] [--thin] [<host>:]<directory> [<ref>...] |
| Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 13 | |
| 14 | DESCRIPTION |
| 15 | ----------- |
| Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 16 | Usually you would want to use 'git push', which is a |
| Junio C Hamano | fce7c7e | 2008-07-02 03:06:38 | [diff] [blame] | 17 | higher-level wrapper of this command, instead. See linkgit:git-push[1]. |
| Junio C Hamano | e58607f | 2007-01-17 23:27:45 | [diff] [blame] | 18 | |
| Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 19 | Invokes 'git-receive-pack' on a possibly remote repository, and |
| Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 20 | updates it from the current repository, sending named refs. |
| 21 | |
| 22 | |
| 23 | OPTIONS |
| 24 | ------- |
| Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 25 | --receive-pack=<git-receive-pack>:: |
| Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 26 | Path to the 'git-receive-pack' program on the remote |
| Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 27 | end. Sometimes useful when pushing to a remote |
| 28 | repository over ssh, and you do not have the program in |
| 29 | a directory on the default $PATH. |
| 30 | |
| Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 31 | --exec=<git-receive-pack>:: |
| Junio C Hamano | 4ad294b | 2007-01-20 02:22:50 | [diff] [blame] | 32 | Same as \--receive-pack=<git-receive-pack>. |
| 33 | |
| Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 34 | --all:: |
| Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 35 | Instead of explicitly specifying which refs to update, |
| Junio C Hamano | d2d9ae1 | 2007-09-19 02:27:57 | [diff] [blame] | 36 | update all heads that locally exist. |
| Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 37 | |
| Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 38 | --dry-run:: |
| Junio C Hamano | 764a667 | 2007-10-23 01:23:31 | [diff] [blame] | 39 | Do everything except actually send the updates. |
| 40 | |
| Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 41 | --force:: |
| Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 42 | Usually, the command refuses to update a remote ref that |
| 43 | is not an ancestor of the local ref used to overwrite it. |
| 44 | This flag disables the check. What this means is that |
| 45 | the remote repository can lose commits; use it with |
| 46 | care. |
| 47 | |
| Junio C Hamano | f727901 | 2011-08-18 06:13:13 | [diff] [blame] | 48 | --quiet:: |
| 49 | Print only error messages. |
| 50 | |
| Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 51 | --verbose:: |
| Junio C Hamano | 4ad294b | 2007-01-20 02:22:50 | [diff] [blame] | 52 | Run verbosely. |
| 53 | |
| Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 54 | --thin:: |
| Junio C Hamano | 4fdccb2 | 2010-02-19 09:58:14 | [diff] [blame] | 55 | Send a "thin" pack, which records objects in deltified form based |
| 56 | on objects not included in the pack to reduce network traffic. |
| Junio C Hamano | 4ad294b | 2007-01-20 02:22:50 | [diff] [blame] | 57 | |
| Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 58 | <host>:: |
| 59 | A remote host to house the repository. When this |
| Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 60 | part is specified, 'git-receive-pack' is invoked via |
| Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 61 | ssh. |
| 62 | |
| 63 | <directory>:: |
| 64 | The repository to update. |
| 65 | |
| Junio C Hamano | 21c0b42 | 2006-10-12 19:10:36 | [diff] [blame] | 66 | <ref>...:: |
| Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 67 | The remote refs to update. |
| 68 | |
| 69 | |
| 70 | Specifying the Refs |
| 71 | ------------------- |
| 72 | |
| 73 | There are three ways to specify which refs to update on the |
| 74 | remote end. |
| 75 | |
| Junio C Hamano | 341071d | 2006-06-04 07:24:48 | [diff] [blame] | 76 | With '--all' flag, all refs that exist locally are transferred to |
| Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 77 | the remote side. You cannot specify any '<ref>' if you use |
| 78 | this flag. |
| 79 | |
| Junio C Hamano | d2d9ae1 | 2007-09-19 02:27:57 | [diff] [blame] | 80 | Without '--all' and without any '<ref>', the heads that exist |
| Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 81 | both on the local side and on the remote side are updated. |
| 82 | |
| 83 | When one or more '<ref>' are specified explicitly, it can be either a |
| 84 | single pattern, or a pair of such pattern separated by a colon |
| 85 | ":" (this means that a ref name cannot have a colon in it). A |
| 86 | single pattern '<name>' is just a shorthand for '<name>:<name>'. |
| 87 | |
| 88 | Each pattern pair consists of the source side (before the colon) |
| 89 | and the destination side (after the colon). The ref to be |
| 90 | pushed is determined by finding a match that matches the source |
| 91 | side, and where it is pushed is determined by using the |
| Junio C Hamano | e0facb9 | 2007-12-05 10:59:48 | [diff] [blame] | 92 | destination side. The rules used to match a ref are the same |
| Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 93 | rules used by 'git rev-parse' to resolve a symbolic ref |
| Junio C Hamano | fce7c7e | 2008-07-02 03:06:38 | [diff] [blame] | 94 | name. See linkgit:git-rev-parse[1]. |
| Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 95 | |
| 96 | - It is an error if <src> does not match exactly one of the |
| 97 | local refs. |
| 98 | |
| 99 | - It is an error if <dst> matches more than one remote refs. |
| 100 | |
| 101 | - If <dst> does not match any remote ref, either |
| 102 | |
| 103 | * it has to start with "refs/"; <dst> is used as the |
| 104 | destination literally in this case. |
| 105 | |
| 106 | * <src> == <dst> and the ref that matched the <src> must not |
| 107 | exist in the set of remote refs; the ref matched <src> |
| 108 | locally is used as the name of the destination. |
| 109 | |
| 110 | Without '--force', the <src> ref is stored at the remote only if |
| 111 | <dst> does not exist, or <dst> is a proper subset (i.e. an |
| Junio C Hamano | 3f680f3 | 2009-11-16 02:10:54 | [diff] [blame] | 112 | ancestor) of <src>. This check, known as "fast-forward check", |
| Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 113 | is performed in order to avoid accidentally overwriting the |
| 114 | remote ref and lose other peoples' commits from there. |
| 115 | |
| Junio C Hamano | 3f680f3 | 2009-11-16 02:10:54 | [diff] [blame] | 116 | With '--force', the fast-forward check is disabled for all refs. |
| Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 117 | |
| 118 | Optionally, a <ref> parameter can be prefixed with a plus '+' sign |
| 119 | to disable the fast-forward check only on that ref. |
| 120 | |
| Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 121 | GIT |
| 122 | --- |
| Junio C Hamano | f7c042d | 2008-06-06 22:50:53 | [diff] [blame] | 123 | Part of the linkgit:git[1] suite |