Changes between Version 15 and Version 16 of notes/git


Ignore:
Timestamp:
2021-12-09T11:28:28Z (3 years ago)
Author:
root
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • notes/git

    v15 v16  
    8383=== add
    8484{{{#!bash
    85 smp='ansible/roles/external/nginx-install'
     85smp='ansible/roles/external/nginx-install'; tag='0.19.1'
    8686git submodule add [email protected]:nginxinc/ansible-role-nginx.git ${smp}
    87 git submodule set-branch --branch tags/0.19.1 -- ${smp}
     87git submodule set-branch --branch tags/${tag} -- ${smp}
    8888git add .gitmodules
    89 (cd ${smp} && git checkout tags/0.19.1)
     89(cd ${smp} && git checkout tags/${tag})
    9090}}}
    9191