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

« back to all changes in this revision

Viewing changes to Documentation/git-log.txt

  • Committer: Package Import Robot
  • Author(s): Gerrit Pape
  • Date: 2007-10-04 08:27:01 UTC
  • mfrom: (1.1.23)
  • Revision ID: package-import@ubuntu.com-20071004082701-rsd058ontoqz4i30
Tags: 1:1.5.3.4-1
new upstream point release (closes: #445188).

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
-g, \--walk-reflogs::
50
50
        Show commits as they were recorded in the reflog. The log contains
51
51
        a record about how the tip of a reference was changed.
 
52
        Cannot be combined with --reverse.
52
53
        See also gitlink:git-reflog[1].
53
54
 
54
55
--decorate::
55
 
    Print out the ref names of any commits that are shown.
 
56
        Print out the ref names of any commits that are shown.
 
57
 
 
58
--full-diff::
 
59
        Without this flag, "git log -p <paths>..." shows commits that
 
60
        touch the specified paths, and diffs about the same specified
 
61
        paths.  With this, the full diff is shown for commits that touch
 
62
        the specified paths; this means that "<paths>..." limits only
 
63
        commits, and doesn't limit diff for those commits.
 
64
 
 
65
--follow::
 
66
        Continue listing the history of a file beyond renames.
 
67
 
 
68
--log-size::
 
69
        Before the log message print out its size in bytes. Intended
 
70
        mainly for porcelain tools consumption. If git is unable to
 
71
        produce a valid value size is set to zero.
 
72
        Note that only message is considered, if also a diff is shown
 
73
        its size is not included.
56
74
 
57
75
<paths>...::
58
76
        Show only commits that affect the specified paths.
78
96
        The "--" is necessary to avoid confusion with the *branch* named
79
97
        'gitk'
80
98
 
81
 
git log -r --name-status release..test::
 
99
git log --name-status release..test::
82
100
 
83
101
        Show the commits that are in the "test" branch but not yet
84
102
        in the "release" branch, along with the list of paths
85
103
        each commit modifies.
86
104
 
 
105
git log --follow builtin-rev-list.c::
 
106
 
 
107
        Shows the commits that changed builtin-rev-list.c, including
 
108
        those commits that occurred before the file was given its
 
109
        present name.
 
110
 
87
111
Discussion
88
112
----------
89
113
 
101
125
GIT
102
126
---
103
127
Part of the gitlink:git[7] suite
104