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:
parent
b7463803bd
commit
1888436ecb
4 changed files with 4 additions and 13 deletions
|
@ -15,3 +15,5 @@
|
|||
branch = auto
|
||||
diff = auto
|
||||
status = auto
|
||||
[github]
|
||||
user = joshtronic
|
||||
|
|
|
@ -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
2
setup
|
@ -172,4 +172,4 @@ fi
|
|||
echo; echo 'WE’RE GOLDEN!'
|
||||
|
||||
# TODO - link mercurial config
|
||||
# TODO - install github gem
|
||||
# TODO - install hub, brew install hub
|
||||
|
|
|
@ -6,7 +6,7 @@ ZSH_THEME="joshtronic"
|
|||
|
||||
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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue