diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-10-25 18:38:04 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-10-25 18:38:04 +0200 |
commit | 9e052a8ce9bc559a51041f8b3273735eaea37637 (patch) | |
tree | b0721f294d92d19183abcd4158cd3f9352284139 | |
parent | typo (diff) | |
download | using-git-9e052a8ce9bc559a51041f8b3273735eaea37637.tar.gz using-git-9e052a8ce9bc559a51041f8b3273735eaea37637.tar.bz2 using-git-9e052a8ce9bc559a51041f8b3273735eaea37637.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | using-git.texinfo | 24 |
1 files changed, 6 insertions, 18 deletions
diff --git a/using-git.texinfo b/using-git.texinfo index 1458420..3a0d748 100644 --- a/using-git.texinfo +++ b/using-git.texinfo @@ -994,16 +994,11 @@ type @command{git status}. @section Go back in time Because Git keeps track of what -has changed it has a log you +has changed it has a log you can access, which has commit messages, so you know when something has happend or what has happen lately. -To read the log type: - -@example -git log -@end example - +To read the log type @command{git log}. If you want to know which files have changes, you can use @command{git whatchanged} instead. @@ -1025,17 +1020,10 @@ git stash pop # Only if you have uncommited changes, this @end example If you instead what to see all -changes from that point of time type: - -@example -git diff COMMIT_ID -@end example - -Or for a specific file: - -@example -git diff COMMIT_ID FILE -@end example +changes from that point of time type +@command{git diff COMMIT_ID}, or +@command{git diff COMMIT_ID FILE} +for a specific file. If you decide that you want to go back permanently to this state you type: |