Skip to content

Instantly share code, notes, and snippets.

@gnarargs
Created August 21, 2009 22:33
Show Gist options
  • Save gnarargs/172476 to your computer and use it in GitHub Desktop.
Save gnarargs/172476 to your computer and use it in GitHub Desktop.
alias reload="source ~/bin/dotfiles/bash/aliases"
function ea {
mate -w ~/bin/dotfiles/bash/aliases && reload
}
function eac {
$current_dir=pwd
ea
cd ~/bin/dotfiles && commit_all
cd $current_dir
}
function commit_all {
git add . && git commit
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment