2254bac16e65e6a0a097b6fef80aed6e1d6887d4
[git.git] / git-push.txt
1 git-push(1)
2 ===========
3
4 NAME
5 ----
6 git-push - Update remote refs along with associated objects.
7
8
9 SYNOPSIS
10 --------
11 'git-push' [--all] [--force] <repository> <refspec>...
12
13 DESCRIPTION
14 -----------
15
16 Updates remote refs using local refs, while sending objects
17 necessary to complete the given refs.
18
19 You can make "interesting" things to happen on the repository
20 every time you push into it, by setting up 'hooks' there.  See
21 documentation for gitlink:git-receive-pack[1].
22
23
24 OPTIONS
25 -------
26 include::pull-fetch-param.txt[]
27
28 \--all::
29         Instead of naming each ref to push, specifies all refs
30         to be pushed.
31
32 -f, \--force::
33         Usually, the command refuses to update a local ref that is
34         not an ancestor of the remote ref used to overwrite it.
35         This flag disables the check.  What this means is that the
36         local repository can lose commits; use it with care.
37
38
39 Author
40 ------
41 Written by Junio C Hamano <junkio@cox.net>
42
43 Documentation
44 --------------
45 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
46
47 GIT
48 ---
49 Part of the gitlink:git[7] suite
50