Skip to content

Instantly share code, notes, and snippets.

@android10
Forked from aelkz/[FEDORA] gitkraken
Last active November 13, 2019 18:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save android10/8389dcfa7697389f97ffbc0648da49c5 to your computer and use it in GitHub Desktop.
Save android10/8389dcfa7697389f97ffbc0648da49c5 to your computer and use it in GitHub Desktop.
How to install gitkraken on Fedora/RedHat + launcher icon
#!/bin/bash
# Download GitKraken
wget https://release.gitkraken.com/linux/gitkraken-amd64.tar.gz
# copy the downloaded file into /opt directory
cp gitkraken-amd64.tar.gz /opt/gitkraken
cd /opt
# Extract the Kraken into /opt directory
tar -xvzf gitkraken-amd64.tar.gz
# Add gitkraken to PATH
echo "export PATH=\$PATH:/opt/gitkraken" >> ~/.bashrc
source ~/.bashrc
# Create gitkraken launcher icon
# download icon here: http://img.informer.com/icons_mac/png/128/422/422255.png
# or here: https://drive.google.com/file/d/0B-3KQ_ohu-RFVkJyS1Zfa2NLSVE/view
cp {your-image}.png /opt/gitkraken/
cd /usr/share/applications
touch gitkraken.desktop
vim gitkraken.desktop
# copy the following contents into gitkraken.desktop file:
[Desktop Entry]
Name=GitKraken
Comment=Git Flow
Exec=/opt/gitkraken/gitkraken
Icon=/opt/gitkraken/icon.png
Terminal=false
Type=Application
Encoding=UTF-8
Categories=Utility;Development;
# save it, and voilá!
@msoranno
Copy link

nice work!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment