Fix the numbered list.

This commit is contained in:
Ewan Mellor
2015-05-03 00:25:19 -07:00
parent b1ab64cc4d
commit a56bf77b6c

View File

@ -37,14 +37,14 @@ Installation
1. Install exiftool and ImageMagick. (The script will cope with these missing,
but it's not going to be very exciting without them.)
```
```
brew install exiftool imagemagick
```
```
2. Run `./install.sh`, which will configure your global git config for you.
It will tell you what it's done, so it should look something like this:
```
```
~/git-diff-image $ ./install.sh
+ git config --global core.attributesfile '~/.gitattributes'
+ touch '/Users/yourname/.gitattributes'
@ -54,7 +54,7 @@ It will tell you what it's done, so it should look something like this:
+ echo '*.png diff=image' >>'/Users/yourname/.gitattributes'
+ git config --global alias.diff-image '!f() { GIT_DIFF_IMAGE_ENABLED=1 git diff "$@"; }; f'
+ git config --global diff.image.command '~/git-diff-image/git_diff_image'
```
```
Public domain dedication
------------------------