Last active
August 29, 2015 13:56
-
-
Save fern4lvarez/8932324 to your computer and use it in GitHub Desktop.
gitsh install script for GNU/Linux OSs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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