Skip to content

Commit 317e22e

Browse files
author
dscho
committed
Update manual pages (2.51.1)
Updated via the `update-git-version-and-manual-pages.yml` GitHub workflow.
1 parent 3c224e6 commit 317e22e

File tree

308 files changed

+70318
-426
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

308 files changed

+70318
-426
lines changed

external/docs/asciidoc/00351ddb725c1d3abdad3ac4f328361997c84e9d

Lines changed: 1741 additions & 0 deletions
Large diffs are not rendered by default.

external/docs/asciidoc/0883e4f9bbcf226dc4fa3fdd377cc0462d07158d

Lines changed: 1957 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
git-whatchanged(1)
2+
==================
3+
4+
NAME
5+
----
6+
git-whatchanged - Show logs with differences each commit introduces
7+
8+
9+
SYNOPSIS
10+
--------
11+
[synopsis]
12+
git whatchanged <option>...
13+
14+
WARNING
15+
-------
16+
`git whatchanged` has been deprecated and is scheduled for removal in
17+
a future version of Git, as it is merely `git log` with different
18+
defaults.
19+
20+
DESCRIPTION
21+
-----------
22+
23+
Shows commit logs and diff output each commit introduces.
24+
25+
New users are encouraged to use linkgit:git-log[1] instead. The
26+
`whatchanged` command is essentially the same as linkgit:git-log[1]
27+
but defaults to showing the raw format diff output and skipping merges:
28+
29+
----
30+
git log --raw --no-merges
31+
----
32+
33+
The command is primarily kept for historical reasons; fingers of
34+
many people who learned Git long before `git log` was invented by
35+
reading the Linux kernel mailing list are trained to type it.
36+
37+
38+
Examples
39+
--------
40+
`git whatchanged -p v2.6.12.. include/scsi drivers/scsi`::
41+
42+
Show as patches the commits since version 'v2.6.12' that changed
43+
any file in the include/scsi or drivers/scsi subdirectories
44+
45+
`git whatchanged --since="2 weeks ago" -- gitk`::
46+
47+
Show the changes during the last two weeks to the file 'gitk'.
48+
The "--" is necessary to avoid confusion with the *branch* named
49+
'gitk'
50+
51+
GIT
52+
---
53+
Part of the linkgit:git[1] suite

0 commit comments

Comments
 (0)