Skip to content

Commit

Permalink
Merge pull request #372 from spacewander/patch-1
Browse files Browse the repository at this point in the history
Install the latest release version of git-extras
  • Loading branch information
hemanth committed May 13, 2015
2 parents 9b45e6b + b1784fd commit a5da0ec
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,15 @@ $ brew install git-extras
## Clone / Tarball:

```bash
$ make install
$ git clone https://github.com/tj/git-extras.git
$ cd git-extras
# checkout the latest tag
$ git checkout $(git describe --tags $(git rev-list --tags --max-count=1))
$ [sudo] make install
```

One-liner:

```bash
$ (cd /tmp && git clone --depth 1 https://github.com/tj/git-extras.git && cd git-extras && sudo make install)
```
$ (cd /tmp && git clone https://github.com/tj/git-extras.git && cd git-extras && git checkout $(git describe --tags $(git rev-list --tags --max-count=1)) && sudo make install)
```

0 comments on commit a5da0ec

Please sign in to comment.