Skip to content

Instantly share code, notes, and snippets.

View rendegosling's full-sized avatar

Ren DG rendegosling

  • Canberra
  • 04:26 (UTC +10:00)
View GitHub Profile
[alias]
co = checkout
ec = config --global -e
up = !git pull --rebase --prune $@ && git submodule update --init --recursive
cob = checkout -b
cm = !git add -A && git commit -m
rb = !git pull --rebase
save = !git add -A && git commit -m 'SAVEPOINT'
wip = commit -am "WIP"
undo = reset HEAD~1 --mixed
[alias]
co = checkout
ec = config --global -e
up = !git pull --rebase --prune $@ && git submodule update --init --recursive
cob = checkout -b
cm = !git add -A && git commit -m
rb = !git pull --rebase
save = !git add -A && git commit -m 'SAVEPOINT'
wip = commit -am "WIP"
undo = reset HEAD~1 --mixed
@rendegosling
rendegosling / rendg-devmachine-setup.sh
Last active October 3, 2020 10:04
rendg-dev-setup.sh
#!/bin/sh
# Author : RenDG
# Script follows here:
#update bash
sudo apt-get autoclean
sudo apt-get install --only-upgrade bash
sudo apt-get upgrade