Dropped some plugins, dropped github init

Switched to using `hub` instead of my script. Dropped a bunch of plugins
because I didn't see the value that I was hoping I would. Slowly moving towards
adopting the git aliases in zsh instead of my own, will clean up everything.
Also contemplating creating some plugins around my other aliases and break them
into separate projects just for the experience of building a zsh plugin
This commit is contained in:
Joshua Sherman 2014-01-09 14:11:17 -05:00
parent b7463803bd
commit 1888436ecb
4 changed files with 4 additions and 13 deletions

View file

@ -15,3 +15,5 @@
branch = auto branch = auto
diff = auto diff = auto
status = auto status = auto
[github]
user = joshtronic

View file

@ -1,11 +0,0 @@
#!/bin/bash
# create directory and checkout project from github
# usage: git github joshtronic/bash
DIR=`echo $1 | awk -F '/' '{print $2}'`
git init $DIR
cd $DIR
git remote add origin git@github.com:$1.git
git pull origin master
cd ..

2
setup
View file

@ -172,4 +172,4 @@ fi
echo; echo 'WERE GOLDEN!' echo; echo 'WERE GOLDEN!'
# TODO - link mercurial config # TODO - link mercurial config
# TODO - install github gem # TODO - install hub, brew install hub

View file

@ -6,7 +6,7 @@ ZSH_THEME="joshtronic"
COMPLETION_WAITING_DOTS="true" COMPLETION_WAITING_DOTS="true"
plugins=(brew git git-extras github last-working-dir mercurial npm osx per-directory-history pip python redis-cli ruby vi-mode) plugins=(brew git git-extras mercurial osx redis-cli)
source $ZSH/oh-my-zsh.sh source $ZSH/oh-my-zsh.sh