~ubuntu-branches/ubuntu/intrepid/git-core/intrepid-updates

« back to all changes in this revision

Viewing changes to Documentation/git-http-push.txt

  • Committer: Package Import Robot
  • Author(s): Gerrit Pape
  • Date: 2007-05-01 08:59:06 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20070501085906-n1e5qzoc00wvlzt3
Tags: 1:1.5.1.3-1
* new upstream point release.
  * git-add tried to optimize by finding common leading directories
    across its arguments but botched, causing very confused behaviour
    (closes: #420671).
  * Documentation/git-reset.txt: suggest git commit --amend in example
    (closes: #420112).
  * unofficial rpm.spec file shipped with git was letting ETC_GITCONFIG
    set to /usr/etc/gitconfig.  Tweak the official Makefile to make it
    harder for distro people to make the same mistake, by setting the
    variable to /etc/gitconfig if prefix is set to /usr (closes:
    #420675).
* debian/changelog.upstream: upstream changes taken from mailing list
  announcement.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
SYNOPSIS
10
10
--------
11
 
'git-http-push' [--complete] [--force] [--verbose] <url> <ref> [<ref>...]
 
11
'git-http-push' [--all] [--force] [--verbose] <url> <ref> [<ref>...]
12
12
 
13
13
DESCRIPTION
14
14
-----------
18
18
 
19
19
OPTIONS
20
20
-------
21
 
--complete::
 
21
--all::
22
22
        Do not assume that the remote repository is complete in its
23
23
        current state, and verify all objects in the entire local
24
24
        ref's history exist in the remote repository.
34
34
        Report the list of objects being walked locally and the
35
35
        list of objects successfully sent to the remote repository.
36
36
 
 
37
-d, -D::
 
38
        Remove <ref> from remote repository.  The specified branch
 
39
        cannot be the remote HEAD.  If -d is specified the following
 
40
        other conditions must also be met:
 
41
 
 
42
        - Remote HEAD must resolve to an object that exists locally
 
43
        - Specified branch resolves to an object that exists locally
 
44
        - Specified branch is an ancestor of the remote HEAD
 
45
 
37
46
<ref>...::
38
47
        The remote refs to update.
39
48