Commit 7e75849104120c8e8e099f64229d5e235d76a9af
1 parent
764f9db216
Exists in
master
and in
2 other branches
UPDATE repos/README.md
Showing 1 changed file with 10 additions and 0 deletions Inline Diff
repos/README.md
1 | external repositories | 1 | external repositories |
2 | ===================== | 2 | ===================== |
3 | 3 | ||
4 | 4 | ||
5 | **Added Repositories (GitHub)** | 5 | **Added Repositories (GitHub)** |
6 | =============================== | 6 | =============================== |
7 | 7 | ||
8 | **oh-my-zsh** | 8 | **oh-my-zsh** |
9 | ------------- | 9 | ------------- |
10 | 10 | ||
11 | git remote add -f remote--robbyrussell--oh-my-zsh https://github.com/robbyrussell/oh-my-zsh.git && \ | 11 | git remote add -f remote--robbyrussell--oh-my-zsh https://github.com/robbyrussell/oh-my-zsh.git && \ |
12 | git subtree add --prefix=repos/robbyrussell/oh-my-zsh remote--robbyrussell--oh-my-zsh/master --squash | 12 | git subtree add --prefix=repos/robbyrussell/oh-my-zsh remote--robbyrussell--oh-my-zsh/master --squash |
13 | - - - - - - | 13 | - - - - - - |
14 | git fetch remote--robbyrussell--oh-my-zsh && \ | 14 | git fetch remote--robbyrussell--oh-my-zsh && \ |
15 | git subtree pull --prefix=repos/robbyrussell/oh-my-zsh remote--robbyrussell--oh-my-zsh master --squash | 15 | git subtree pull --prefix=repos/robbyrussell/oh-my-zsh remote--robbyrussell--oh-my-zsh master --squash |
16 | 16 | ||
17 | ---------------------- | 17 | ---------------------- |
18 | 18 | ||
19 | 19 | ||
20 | **Antigen** | 20 | **Antigen** |
21 | ----------- | 21 | ----------- |
22 | 22 | ||
23 | git remote add -f remote--zsh-user--antigen https://github.com/zsh-users/antigen.git && \ | 23 | git remote add -f remote--zsh-user--antigen https://github.com/zsh-users/antigen.git && \ |
24 | git subtree add --prefix=repos/zsh-users/antigen remote--zsh-user--antigen/master --squash | 24 | git subtree add --prefix=repos/zsh-users/antigen remote--zsh-user--antigen/master --squash |
25 | - - - - - - | 25 | - - - - - - |
26 | git fetch remote--zsh-user--antigen && \ | 26 | git fetch remote--zsh-user--antigen && \ |
27 | git subtree pull --prefix=repos/zsh-users/antigen remote--zsh-user--antigen master --squash | 27 | git subtree pull --prefix=repos/zsh-users/antigen remote--zsh-user--antigen master --squash |
28 | 28 | ||
29 | ---------------------- | 29 | ---------------------- |
30 | ---------------------- | ||
31 | |||
32 | **Update** | ||
33 | ---------- | ||
34 | git fetch remote--robbyrussell--oh-my-zsh && \ | ||
35 | git subtree pull --prefix=repos/robbyrussell/oh-my-zsh remote--robbyrussell--oh-my-zsh master --squash && \ | ||
36 | git fetch remote--zsh-user--antigen && \ | ||
37 | git subtree pull --prefix=repos/zsh-users/antigen remote--zsh-user--antigen master --squash | ||
38 | |||
39 | ---------------------- | ||
30 | 40 | ||
31 | 41 | ||
32 | That's all, Folks! | 42 | That's all, Folks! |
33 | ------------------ | 43 | ------------------ |
34 | 44 | ||
35 | - - - - - - - - - | 45 | - - - - - - - - - |