mirror of
https://github.com/sahinakkaya/til.git
synced 2024-11-22 08:39:39 +01:00
Fix typo
This commit is contained in:
parent
de267250fd
commit
c22fc567ed
@ -4,12 +4,12 @@ You can add filename to `git log` to view all the commit history of a file:
|
|||||||
git log my_file
|
git log my_file
|
||||||
```
|
```
|
||||||
|
|
||||||
If you want to view diff's, at `-p` option:
|
If you want to view diff's, add `-p` option:
|
||||||
```
|
```
|
||||||
git log -p my_file
|
git log -p my_file
|
||||||
```
|
```
|
||||||
|
|
||||||
If you want to continue listing the file history beyond renames add `--follow` option:
|
If you want to continue listing the file history beyond renames, add `--follow` option:
|
||||||
```
|
```
|
||||||
git log --follow -p my_file
|
git log --follow -p my_file
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user