1.1.0 • Published 6 years ago

git-hash v1.1.0

Weekly downloads
41
License
MIT
Repository
github
Last release
6 years ago

git-hash

Just show the hash of a branch, tag, etc.

If you need to know the hash of some git object, just run git-hash. All this does is runs git rev-parse. However, this makes more sense to me, and hash is easier to remember than rev-parse.

Usage

Show the (short) hash of the current branch:

git hash

Show the long hash of the current branch:

git hash -l

# short for: git hash --long

Show the hash of a branch, tag, etc.:

# show the hash of master
git hash master

# show the hash of a tag
git hash v1.0.4

# show the entire hash of feature/fun-stuff
git hash -l feature/fun-stuff

Install

Option 1: use yarn or npm

If using npm:

npm i -g git-hash

If using Yarn:

yarn global add git-hash

Option 2: manual installation

  1. Either clone this repo or download the zip file
  2. Add git-hash from this project to your $PATH

License

MIT

1.1.0

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago