Blame view

repos/README.md 1.32 KB
df21f5076   mj   REMOTE REPOS: add...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  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 && \
a18156480   mj   [FIX] README.md
15
  git subtree pull --prefix=repos/robbyrussell/oh-my-zsh remote--robbyrussell--oh-my-zsh master --squash
df21f5076   mj   REMOTE REPOS: add...
16
17
18
19
20
21
22
23
24
25
    
  ----------------------
  
  
  **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  
  - - - - - -  
f87a23652   mj   [FIX] README.md
26
  git fetch remote--zsh-user--antigen && \
a18156480   mj   [FIX] README.md
27
  git subtree pull --prefix=repos/zsh-users/antigen remote--zsh-user--antigen master --squash
df21f5076   mj   REMOTE REPOS: add...
28
29
    
  ----------------------
7e7584910   mj   UPDATE repos/READ...
30
31
32
33
  ----------------------
  
  **Update**
  ----------
8a9f89de5   mj   [IMP] repos/READM...
34
35
36
37
38
39
  
  git fetch --no-tags remote--robbyrussell--oh-my-zsh && \
  git subtree pull --prefix=repos/robbyrussell/oh-my-zsh remote--robbyrussell--oh-my-zsh master --squash
  
  
  git fetch --no-tags remote--zsh-user--antigen && \
7e7584910   mj   UPDATE repos/READ...
40
41
42
  git subtree pull --prefix=repos/zsh-users/antigen remote--zsh-user--antigen master --squash
    
  ----------------------
df21f5076   mj   REMOTE REPOS: add...
43
44
45
46
47
48
  
  
  That's all, Folks!
  ------------------
    
  - - - - - - - - -