From 65ee983bac24c1a6c7680120611aea69b2f75839 Mon Sep 17 00:00:00 2001 From: Daniel Thoren Date: Mon, 12 Apr 2021 10:02:48 +0200 Subject: [PATCH] :memo: add dokumentation on git "flows" --- README.md | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cfc7fcb..699bc93 100644 --- a/README.md +++ b/README.md @@ -51,8 +51,23 @@ pipenv run python . #cd .. && rm -rf cool-user-repo-online ``` -## Git Branching -> Coming soon! 🚧 +## Git Flows +> In progress! 🚧 + +### New Development Flow +``` +# clone repo with local_name enables several clones +git clone + +# optional: checkout (i.e switch to) a branch to continue developing from there +git checkout + +# optional if you switched branch on the last step +# switched branch: branch out from +git checkout +git branch +git push --set-upstream origin feature/sql-and-xml-validation +``` ## Repo Badges > Coming soon! 🚧