Created
August 9, 2016 09:28
-
-
Save pythoninthegrass/8adf67329922bbfca606523eb807c6bb to your computer and use it in GitHub Desktop.
Install GitKraken on Fedora 24
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
#!/bin/bash | |
# Download GitKraken | |
wget https://release.gitkraken.com/linux/gitkraken-amd64.tar.gz | |
# Extract the Kraken | |
tar -xvzf gitkraken-amd64.tar.gz | |
# Move the Kraken | |
sudo rsync -va --delete-after GitKraken/ /opt/GitKraken/ | |
# Add the Kraken to PATH | |
echo "export PATH=\$PATH:/opt/GitKraken" >> ~/.bashrc | |
source ~/.bashrc | |
## Cinnamon Menu | |
# Right click Menu > Configure... > Open the menu editor > Applications | |
# Programming > New Item | |
# Name: GitKraken | |
# Command: /opt/GitKraken/gitkraken %U | |
# Select a suitable icon (e.g., Numix-Circle under /usr/share/icons/Numix-Circle/scalable/apps) | |
# OK |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not work in centos 7 ¿Why? :(