diff options
author | typebrook <typebrook@gmail.com> | 2018-11-01 22:50:46 +0800 |
---|---|---|
committer | typebrook <typebrook@gmail.com> | 2018-11-01 22:50:46 +0800 |
commit | 584794ba86ff033c9487eb806384c29d4e41d1e8 (patch) | |
tree | 3a171083517094a444da036f166d0e26054e63a9 | |
parent | 05e066893881dc7f3042fab386b6ef2b5f4c93eb (diff) |
update
-rw-r--r-- | Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -1,11 +1,9 @@ | |||
1 | sync-alias: | ||
2 | cat ~/.bash_aliases > ./.bash_aliases | ||
3 | sync-vim: | ||
4 | cat ~/.vim_runtime/my_configs.vim > ./.vimrc | ||
5 | apply-alias: | 1 | apply-alias: |
6 | cat ./.bash_aliases > ~/.bash_aliases | 2 | rm ~/.bash_aliases |
3 | ln ./.bash_aliases ~/.bash_aliases | ||
7 | apply-vim: | 4 | apply-vim: |
8 | cat ./.vimrc > ~/.vim_runtime/my_configs.vim | 5 | rm ~/.vim_runtime/my_configs.vim |
6 | ln ./.vimrc ~/.vim_runtime/my_configs.vim | ||
9 | push: | 7 | push: |
10 | git commit -am "update" | 8 | git commit -am "update" |
11 | git push | 9 | git push |