📝 add dokumentation on git "flows"

This commit is contained in:
dannydannydanny 2021-04-12 10:02:48 +02:00 committed by GitHub
parent 95113ddb80
commit 65ee983bac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,8 +51,23 @@ pipenv run python .
#cd .. && rm -rf cool-user-repo-online #cd .. && rm -rf cool-user-repo-online
``` ```
## Git Branching ## Git Flows
> Coming soon! 🚧 > In progress! 🚧
### New Development Flow
```
# clone repo with local_name enables several clones
git clone <repo> <local_name>
# optional: checkout (i.e switch to) a branch to continue developing from there
git checkout <feature/featurename>
# optional if you switched branch on the last step
# switched branch: branch out from
git checkout <feature/newfeature>
git branch <feature/newfeature>
git push --set-upstream origin feature/sql-and-xml-validation
```
## Repo Badges ## Repo Badges
> Coming soon! 🚧 > Coming soon! 🚧