The Information Manager From Hell3 [Git Tags] Git Tags # push all tags $ git push origin --tags # push one tag $ git push origin {tag\_version} # git annotated tag $ git tag -a v1.0 -m "version1.0" # git light tag $ git tag "v.10" 2022. 11. 14. [Git configuration on Server] REF Git install Git remote repo access 1. Install git If you don't have sudo authority, use conda $ conda install -c anaconda git 2. Git configuration git global set-up (configuration is different from users) git system set-up (unlike previous one, this would effect the whole system regardless of its users) Here I am assuming everyone has git configurations local. On your local. Copy from be.. 2022. 11. 13. [Redirecting git submodules] Reference Git submodules commands Problem Submodule is connected to original repos. While using opensource packages as submodules in my main project, made several changes to submodules. Commit & Push will be submitted to original repos submodules. Solution fork the original opensource packages to your own git redirect those submodules url to forked repo git remote set-url origin "https://github... 2022. 11. 12. 이전 1 다음