Blame view
repos/README.md
984 Bytes
|
df21f5076
|
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 28 29 30 31 32 33 34 35 |
external repositories
=====================
**Added Repositories (GitHub)**
===============================
**oh-my-zsh**
-------------
git remote add -f remote--robbyrussell--oh-my-zsh https://github.com/robbyrussell/oh-my-zsh.git && \
git subtree add --prefix=repos/robbyrussell/oh-my-zsh remote--robbyrussell--oh-my-zsh/master --squash
- - - - - -
git fetch remote--robbyrussell--oh-my-zsh && \
git subtree pull --prefix=repos/robbyrussell/oh-my-zsh remote--robbyrussell--oh-my-zsh/master --squash
----------------------
**Antigen**
-----------
git remote add -f remote--zsh-user--antigen https://github.com/zsh-users/antigen.git && \
git subtree add --prefix=repos/zsh-users/antigen remote--zsh-user--antigen/master --squash
- - - - - -
git fetch remote--robbyrussell--oh-my-zsh && \
git subtree pull --prefix=repos/zsh-users/antigen remote--zsh-user--antigen/master --squash
----------------------
That's all, Folks!
------------------
- - - - - - - - -
|