Skip to content

Instantly share code, notes, and snippets.

ng new your-app-name
# personal alias
export EDITOR=emacs
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
@Sharks33
Sharks33 / .bash_profile
Last active November 10, 2017 05:09
Personal configuration for my .bashrc file.
source ~/.profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# Setting PATH for Python 3.4
# The orginal version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.4/bin:${PATH}"
export PATH
@Sharks33
Sharks33 / .gitconfig
Created November 9, 2017 15:04
Configuration file for Git including styles for terminal and alias shortcuts.
[alias]
st = status --ignore-submodules
ci = commit
co = checkout
conb = checkout origin/master -b
cp = cherry-pick
br = branch
df = diff
id = log -1 --pretty=%h
logg = log --graph --decorate --oneline