-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit.bat
27 lines (21 loc) · 826 Bytes
/
git.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
git init
git add .
git commit -a -m "Initial commit"
cd .emacs.d
cd mode
git submodule add https://github.com/company-mode/company-mode.git
git submodule add https://github.com/rust-lang/rust-mode.git
git submodule add git://jblevins.org/git/markdown-mode.git
cd ..
cd auto-complete
git submodule add https://github.com/auto-complete/auto-complete.git
git submodule add https://github.com/brianjcj/auto-complete-clang.git
git submodule add https://github.com/auto-complete/fuzzy-el.git
git submodule add https://github.com/auto-complete/popup-el.git
git submodule add https://github.com/capitaomorte/yasnippet.git
cd ..
cd project
git submodule add https://github.com/ecb-home/ecb.git
git commit -a -m "submodule add success"
git remote add origin https://github.com/hellmonky/configuration.git
git push -u origin master