diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-08-22 18:03:42 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-08-22 18:03:42 +0200 |
commit | fbfae11d602e56780a02f51770a881b9287f081d (patch) | |
tree | bddd07b0873f33529597e04fdec74f15fc6c76af /using-git.texinfo | |
parent | cherry-picking (diff) | |
download | using-git-fbfae11d602e56780a02f51770a881b9287f081d.tar.gz using-git-fbfae11d602e56780a02f51770a881b9287f081d.tar.bz2 using-git-fbfae11d602e56780a02f51770a881b9287f081d.tar.xz |
examine the log
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'using-git.texinfo')
-rw-r--r-- | using-git.texinfo | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/using-git.texinfo b/using-git.texinfo index 546aecc..2498fa6 100644 --- a/using-git.texinfo +++ b/using-git.texinfo @@ -1127,6 +1127,7 @@ bisection. @menu * Tagging versions:: * Cherry picking:: +* Examine the log:: @end menu @@ -1185,6 +1186,24 @@ git cherry-pick COMMIT_ID +@node Examine the log +@section Examine the log + +So how are you going to cherry-pick commits +if you do not know their commit ID:s? Simple, +you use Git's log tool to find their ID:s. + +The log will only show earlier commits in +the branch then the currently checked out +commit. Typing @command{git log} will show +you the commit's ID, author, date, and +commit message. You can limit the commits +to a commits where specify files has been +changed by appending those files to the +command. + + + @node Glossary @appendix Glossary |