Skip to content

Instantly share code, notes, and snippets.

View jelc53's full-sized avatar

Julian Cooper jelc53

  • Stanford University; BCG Gamma
  • Sydney, Australia
View GitHub Profile
@jelc53
jelc53 / git_funcs.sh
Last active March 18, 2023 18:11 — forked from danjenson/git_funcs.sh
collection of simple git functions
#!/bin/bash
# source this file from your ~/.bashrc, i.e. `source git_funcs.sh`
# run this before making changes, otherwise you'll need to deal with merge conflicts
# usage: gitu
gitu () { git pull --rebase; }
# add it all, push it all, fuck the police
# usage: gitx
gitx () {