diff options
author | typebrook <typebrook@gmail.com> | 2018-11-15 11:53:57 +0800 |
---|---|---|
committer | typebrook <typebrook@gmail.com> | 2018-11-15 11:53:57 +0800 |
commit | 26d3ecf2ed2648635959aca33cff822a1769c466 (patch) | |
tree | e8b6e318f8cd5fa4f9eb192fe989a5a06c9866eb /Makefile | |
parent | 68bf7aa2c5160f799c5f69ee0737b4eb40cbe1bb (diff) |
update
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -1,9 +1,12 @@ | |||
1 | apply-alias: | 1 | apply-alias: |
2 | rm ~/.bash_aliases | 2 | rm -f ~/.bash_aliases |
3 | ln ./.bash_aliases ~/.bash_aliases | 3 | ln -s `pwd`/.bash_aliases ~/.bash_aliases |
4 | apply-vim: | 4 | apply-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 |
7 | apply-tig: | ||
8 | rm -f ~/.tigrc | ||
9 | ln -s `pwd`/.tigrc ~/.tigrc | ||
7 | push: | 10 | push: |
8 | git commit -am "update" | 11 | git commit -am "update" |
9 | git push | 12 | git push |