add more git modules
This commit is contained in:
parent
9f35152392
commit
fda0cd3f1b
|
@ -1,3 +1,6 @@
|
|||
[submodule "witcoredns"]
|
||||
path = witcoredns
|
||||
url = git://ping.wit.com/git/witcoredns
|
||||
[submodule "realtime-crypto-data"]
|
||||
path = realtime-crypto-data
|
||||
url = git://ping.wit.com/git/realtime-crypto-data
|
||||
|
|
|
@ -0,0 +1,54 @@
|
|||
export GIT_AUTHOR_NAME='Jeff Carr'
|
||||
export GIT_COMMITTER_NAME='Jeff Carr'
|
||||
export GIT_COMMITTER_EMAIL='jcarr@wit.com'
|
||||
export GIT_USER=jcarr
|
||||
export GIT_AUTHOR_EMAIL='jcarr@wit.com'
|
||||
export LC_EXTRA_USER=jcarr
|
||||
export LC_USER=jcarr
|
||||
|
||||
# export PS1='\h:\w\$ '
|
||||
umask 022
|
||||
|
||||
unset PAGER
|
||||
set +o ignoreeof
|
||||
export LS_OPTIONS='--color=auto'
|
||||
eval `dircolors`
|
||||
alias ls='ls $LS_OPTIONS'
|
||||
alias ll='ls $LS_OPTIONS -lh'
|
||||
alias lf='ls $LS_OPTIONS -aCF'
|
||||
alias l='ls $LS_OPTIONS -lA'
|
||||
#
|
||||
# Some more alias to avoid making mistakes:
|
||||
alias rm='rm -i'
|
||||
alias cp='cp -i'
|
||||
alias mv='mv -i'
|
||||
|
||||
alias pa='ps auxwH -L kstart_time'
|
||||
alias psc='ps xawf -eo pid,user,cgroup,args'
|
||||
alias reattach='screen -d -A -R jcarr'
|
||||
|
||||
PATH=$PATH:/sbin:/usr/sbin:~/go/bin:/usr/games
|
||||
|
||||
export LANG=C
|
||||
export LANGUAGE=C
|
||||
export LC_ALL=C
|
||||
|
||||
# setterm -blength 0
|
||||
|
||||
if [ $DISPLAY ] ; then
|
||||
xset b off
|
||||
fi
|
||||
|
||||
export EDITOR=vim
|
||||
|
||||
stty -echoctl
|
||||
|
||||
unset VIMINIT
|
||||
|
||||
export EDITOR=vim
|
||||
# export PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
|
||||
|
||||
# if [ -f ~/.jcarr ]; then
|
||||
# . ~/.jcarr
|
||||
# fi
|
||||
|
4
Makefile
4
Makefile
|
@ -12,8 +12,8 @@ push:
|
|||
git commit -a
|
||||
git push
|
||||
|
||||
submodule:
|
||||
git submodule add git://ping.wit.com/git/witcoredns witcoredns
|
||||
# git submodule add git://ping.wit.com/git/witcoredns witcoredns
|
||||
update:
|
||||
git submodule update --init --recursive
|
||||
|
||||
# use this allow a new tree on the git server
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 79509cad89284a6752440e3cbbc8a572d1fc24b9
|
Loading…
Reference in New Issue