Skip to content

Instantly share code, notes, and snippets.

@fern4lvarez
Last active August 29, 2015 13:56
Show Gist options
  • Save fern4lvarez/8932324 to your computer and use it in GitHub Desktop.
Save fern4lvarez/8932324 to your computer and use it in GitHub Desktop.
gitsh install script for GNU/Linux OSs
#!/usr/bin/env bash
# Execute as super user
# chmod +x install_gitsh.sh
# sudo ./install_gitsh.sh
VERSION="0.9"
curl -O http://thoughtbot.github.io/gitsh/gitsh-${VERSION}.tar.gz
tar -zxf gitsh-${VERSION}.tar.gz
cd gitsh-${VERSION}
./configure
make
make install
cd ..
rm -rf gitsh-${VERSION}
rm gitsh-${VERSION}.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment