This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
git [2014/09/02 16:00] – [Clone a Repo containing submodules/] admin | git [2021/01/19 22:58] (current) – [Git Changelog] admin | ||
---|---|---|---|
Line 35: | Line 35: | ||
==== Master-Branch hoch schieben ==== | ==== Master-Branch hoch schieben ==== | ||
- | Schiebt die lokale | + | Schiebt die lokale |
git push origin master | git push origin master | ||
Line 44: | Line 44: | ||
- | ====== Git Submodules ====== | + | ====== Git Submodules |
- | ===== Create a Submodule | + | ===== Create a Submodule ===== |
To link one repository into another in git you can use a thing called submodules: | To link one repository into another in git you can use a thing called submodules: | ||
Line 54: | Line 54: | ||
Example: | Example: | ||
+ | cd / | ||
git submodule add https:// | git submodule add https:// | ||
git add . | git add . | ||
Line 72: | Line 73: | ||
When updating a submodule its required to tell the parent repository to use the latest downloaded version. | When updating a submodule its required to tell the parent repository to use the latest downloaded version. | ||
- | cd /PATH/TO/REPOS/SUBMODULE/ | + | cd /YOUR/CLONED/REPO/SUBMODULE/ |
git pull origin master | git pull origin master | ||
cd / | cd / | ||
git commit -am " | git commit -am " | ||
git push origin | git push origin | ||
+ | |||
+ | ===== Pull ===== | ||
+ | |||
+ | git pull origin | ||
+ | git submodule update | ||
+ | |||
+ | ====== Change git Author ====== | ||
+ | |||
+ | <code bash git.sh> | ||
+ | #!/bin/sh | ||
+ | |||
+ | git filter-branch -f --env-filter ' | ||
+ | |||
+ | OLD_EMAIL=" | ||
+ | CORRECT_NAME=" | ||
+ | CORRECT_EMAIL=" | ||
+ | |||
+ | if [ " | ||
+ | then | ||
+ | export GIT_COMMITTER_NAME=" | ||
+ | export GIT_COMMITTER_EMAIL=" | ||
+ | fi | ||
+ | if [ " | ||
+ | then | ||
+ | export GIT_AUTHOR_NAME=" | ||
+ | export GIT_AUTHOR_EMAIL=" | ||
+ | fi | ||
+ | ' --tag-name-filter cat -- --branches --tags | ||
+ | </ | ||
+ | |||
+ | ====== Git Changelog ====== | ||
+ | |||
+ | Generate a simple changelog of all commits between latest 2 tags. | ||
+ | |||
+ | <code bash> | ||
+ | # | ||
+ | |||
+ | TAGS=($(git tag --sort=-version: | ||
+ | git log --pretty=format:" | ||
+ | </ | ||
+ | |||
+ |