From 16a1ee56c1e27ad52c90288aa57e7bd3c78ec13d Mon Sep 17 00:00:00 2001 From: Josip Ledic Date: Fri, 31 Jan 2020 17:55:57 +0100 Subject: [PATCH] git flow: add page (#3775) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Create git-flow.md * Update pages/common/git-flow.md Co-Authored-By: Iván Hernández Cazorla * Update pages/common/git-flow.md Co-Authored-By: Iván Hernández Cazorla * Update pages/common/git-flow.md Co-Authored-By: Iván Hernández Cazorla * Update pages/common/git-flow.md Co-Authored-By: Iván Hernández Cazorla * Update pages/common/git-flow.md Co-Authored-By: Starbeamrainbowlabs * Update pages/common/git-flow.md Co-Authored-By: Iván Hernández Cazorla * Update git-flow.md Co-authored-by: Iván Hernández Cazorla Co-authored-by: Starbeamrainbowlabs --- pages/common/git-flow.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/git-flow.md diff --git a/pages/common/git-flow.md b/pages/common/git-flow.md new file mode 100644 index 000000000..836c2586e --- /dev/null +++ b/pages/common/git-flow.md @@ -0,0 +1,24 @@ +# git flow + +> A collection of Git extensions to provide high-level repository operations. +> More information: . + +- Initialize it inside an existing git repository: + +`git flow init` + +- Start developing on a feature branch based on `develop`: + +`git flow feature start {{feature}}` + +- Finish development on a feature branch, merging it into the `develop` branch and deleting it: + +`git flow feature finish {{feature}}` + +- Publish a feature to the remote server: + +`git flow feature publish {{feature}}` + +- Get a feature published by another user: + +`git flow feature pull origin {{feature}}`