aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.bash_aliases3
-rw-r--r--Makefile11
2 files changed, 8 insertions, 6 deletions
diff --git a/.bash_aliases b/.bash_aliases
index e488a3f..5f054d6 100644
--- a/.bash_aliases
+++ b/.bash_aliases
@@ -22,6 +22,7 @@ alias commit='git commit'
22alias branch='git branch' 22alias branch='git branch'
23alias pull='git pull' 23alias pull='git pull'
24alias fetch='git fetch' 24alias fetch='git fetch'
25alias merge='git merge'
25 26
26# docker 27# docker
27alias dp='docker ps' 28alias dp='docker ps'
@@ -53,8 +54,6 @@ alias x='xdg-open'
53alias f='free -h' 54alias f='free -h'
54alias yl='youtube-dl' 55alias yl='youtube-dl'
55alias raw='echo "https://raw.githubusercontent.com"' 56alias raw='echo "https://raw.githubusercontent.com"'
56alias sshkey='curl $(raw)/typebrook/settings/master/blob/master/gcp | cat'
57alias sshgcp='curl $(raw)/typebrook/settings/master/blob/master/gcp > ./gcp'
58 57
59# tmp 58# tmp
60alias geo='cd ~/git/geoBingAnWeb' 59alias geo='cd ~/git/geoBingAnWeb'
diff --git a/Makefile b/Makefile
index 4bf6f56..d3bce0f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,12 @@
1apply-alias: 1apply-alias:
2 rm ~/.bash_aliases 2 rm -f ~/.bash_aliases
3 ln ./.bash_aliases ~/.bash_aliases 3 ln -s `pwd`/.bash_aliases ~/.bash_aliases
4apply-vim: 4apply-vim:
5 rm ~/.vim_runtime/my_configs.vim 5 rm -f ~/.vim_runtime/my_configs.vim
6 ln ./.vimrc ~/.vim_runtime/my_configs.vim 6 ln -s `pwd`/.vimrc ~/.vim_runtime/my_configs.vim
7apply-tig:
8 rm -f ~/.tigrc
9 ln -s `pwd`/.tigrc ~/.tigrc
7push: 10push:
8 git commit -am "update" 11 git commit -am "update"
9 git push 12 git push