Skip to content

Commit

Permalink
Merge branch 'fixes'
Browse files Browse the repository at this point in the history
  • Loading branch information
Junio C Hamano committed Nov 1, 2005
2 parents e634aec + bd66361 commit d92ddb5
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Documentation/git-log.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,24 @@ OPTIONS
Show only commits between the named two commits.


Examples
--------
git log --no-merges::

Show the whole commit history, but skip any merges

git log v2.6.12.. include/scsi drivers/scsi::

Show all commits since version 'v2.6.12' that changed any file
in the include/scsi or drivers/scsi subdirectories

git log --since="2 weeks ago" -- gitk::

Show the changes during the last two weeks to the file 'gitk'.
The "--" is necessary to avoid confusion with the *branch* named
'gitk'


Author
------
Written by Linus Torvalds <torvalds@osdl.org>
Expand Down
14 changes: 14 additions & 0 deletions Documentation/git-whatchanged.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,20 @@ OPTIONS
However, it is not very useful in general, although it
*is* useful on a file-by-file basis.

Examples
--------
git-whatchanged -p v2.6.12.. include/scsi drivers/scsi::

Show as patches the commits since version 'v2.6.12' that changed
any file in the include/scsi or drivers/scsi subdirectories

git-whatchanged --since="2 weeks ago" -- gitk::

Show the changes during the last two weeks to the file 'gitk'.
The "--" is necessary to avoid confusion with the *branch* named
'gitk'


Author
------
Written by Linus Torvalds <torvalds@osdl.org> and
Expand Down
13 changes: 13 additions & 0 deletions Documentation/gitk.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,19 @@ OPTIONS
Some argument not yet documented.


Examples
--------
gitk v2.6.12.. include/scsi drivers/scsi::

Show as the changes since version 'v2.6.12' that changed any
file in the include/scsi or drivers/scsi subdirectories

gitk --since="2 weeks ago" -- gitk::

Show the changes during the last two weeks to the file 'gitk'.
The "--" is necessary to avoid confusion with the *branch* named
'gitk'

Author
------
Written by Paul Mackerras <paulus@samba.org>
Expand Down

0 comments on commit d92ddb5

Please sign in to comment.