added mongodb alias. removed port var
parent
02cfa6cba4
commit
40401627fb
|
|
@ -28,6 +28,8 @@ alias gmt='git mergetool'
|
|||
alias grc='git rebase --continue'
|
||||
alias gk='git fetch origin; git remote prune origin; gitk --all &'
|
||||
alias dlb='dml'
|
||||
|
||||
alias mongodps="mongod --config /usr/local/etc/mongod.conf --fork --logpath ~/.docs/mongo.log"
|
||||
# delete merged local branches
|
||||
function dml(){
|
||||
for b in `git branch --merged | grep -v \*`; do git branch -D $b; done
|
||||
|
|
|
|||
1
.bashrc
1
.bashrc
|
|
@ -16,7 +16,6 @@ export EDITOR=vim # Default Editor
|
|||
export VISUAL=$EDITOR # Visual not really used differently from EDITOR anymore
|
||||
export LESS='-iMR' # Case insensite search, verbose prompting and raw output
|
||||
export PAGER=less # Used to display text / man files
|
||||
export PORT=3001
|
||||
|
||||
|
||||
#
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@ export EDITOR=vim # Default Editor
|
|||
export VISUAL=$EDITOR # Visual not really used differently from EDITOR anymore
|
||||
export LESS='-iMR' # Case insensite search, verbose prompting and raw output
|
||||
export PAGER=less # Used to display text / man files
|
||||
export PORT=3001
|
||||
|
||||
#
|
||||
# History
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@
|
|||
# Make `git rebase` safer on OS X
|
||||
# More info: <http://www.git-tower.com/blog/make-git-rebase-safe-on-osx/>
|
||||
trustctime = false
|
||||
editor = gvim
|
||||
editor = vim
|
||||
autocrlf = input
|
||||
|
||||
[color]
|
||||
|
|
|
|||
|
|
@ -36,3 +36,4 @@ Tools/vim/tutor/
|
|||
.lesshst
|
||||
.atom/compile-cache
|
||||
|
||||
./assets/**/lib
|
||||
|
|
|
|||
Loading…
Reference in New Issue