Skip to content

Instantly share code, notes, and snippets.

View MatthewBooth's full-sized avatar
:octocat:
Working

Matt Booth MatthewBooth

:octocat:
Working
View GitHub Profile
@MatthewBooth
MatthewBooth / README.md
Last active March 8, 2019 09:35
Installing Robo3t on Ubuntu 16.04.3 LTS
  • Download the Binary from the official Robo3t Website.
  • Extract the archive to /opt/robo3t. You may need root permissions to do this.
  • Set the permissions to the current user sudo chown -R ${whoami}:${whoami} /opt/robo3t
  • Download this image http://blog.robomongo.org/content/images/2016/01/enjoy.png and save to /opt/robo3t/bin/robo3t.png
  • Make the binary executable sudo chmod +x /opt/robo3t/bin/robo3t
  • Create a desktop file and copy in the contents below. Call it robo3t.desktop.
  • Install this file using sudo desktop-file-install ~/Downloads/robo3t.desktop replacing ~/Downloads with the location you created the file

That should be all you need to go and run this program. If you receive errors you may need to:

@MatthewBooth
MatthewBooth / README.md
Last active February 23, 2019 09:22
Useful Git Aliases

Useful Git Aliases

These are some very useful Git aliases that I've found to be invaluable when using Git on a day-to-day basis.

Remove merged branches

This will remove any branch from your local repo that has been merged in the remote. Useful for keeping your local copy clean.

Put this into your .bashrc file or .bash_aliases: