Skip to content

Instantly share code, notes, and snippets.

View rodelta's full-sized avatar
🤔

Cris De la Rivera rodelta

🤔
  • Hamburg, Germany
View GitHub Profile
@rodelta
rodelta / gist:39b85d097351f0d7c6acc26196c64c29
Last active May 20, 2019 11:28
clean git local branches
git branch --merged master | grep -v "\* master" | xargs -n 1 git branch -d
@rodelta
rodelta / gln.bash
Created February 12, 2019 17:30
git log nice
git log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(auto)%d%C(reset)'
@rodelta
rodelta / Roelementary.bash
Last active November 8, 2021 06:20
Install Elementary-OS Ro's way
#Download Elementary OS from here:
#http://sourceforge.net/projects/elementaryos/files/stable/
#First you update your system
sudo apt-get update && sudo apt-get dist-upgrade
#Install Google Chrome
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'