git-hash
v1.1.0
Published
> Just show the hash of a branch, tag, etc.
Downloads
121
Readme
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
- Either clone this repo or download the zip file
- Add
git-hash
from this project to your $PATH
License
MIT