6 git-push - Update remote refs along with associated objects.
11 'git-push' [--all] [--tags] [--force] <repository> <refspec>...
16 Updates remote refs using local refs, while sending objects
17 necessary to complete the given refs.
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].
26 include::pull-fetch-param.txt[]
29 Instead of naming each ref to push, specifies all refs
33 All refs under `$GIT_DIR/refs/tags` are pushed, in
34 addition to refspecs explicitly listed on the command
38 Usually, the command refuses to update a local ref that is
39 not an ancestor of the remote ref used to overwrite it.
40 This flag disables the check. What this means is that the
41 local repository can lose commits; use it with care.
46 Written by Junio C Hamano <junkio@cox.net>
50 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
54 Part of the gitlink:git[7] suite