Changes between Version 15 and Version 16 of notes/git
- Timestamp:
- 2021-12-09T11:28:28Z (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
notes/git
v15 v16 83 83 === add 84 84 {{{#!bash 85 smp='ansible/roles/external/nginx-install' 85 smp='ansible/roles/external/nginx-install'; tag='0.19.1' 86 86 git submodule add [email protected]:nginxinc/ansible-role-nginx.git ${smp} 87 git submodule set-branch --branch tags/ 0.19.1-- ${smp}87 git submodule set-branch --branch tags/${tag} -- ${smp} 88 88 git add .gitmodules 89 (cd ${smp} && git checkout tags/ 0.19.1)89 (cd ${smp} && git checkout tags/${tag}) 90 90 }}} 91 91