Coder Social home page Coder Social logo

git-flow-wrapper's Introduction

gflow

Wrapper to run common git flow commands with remote repositories.

Gitflow Workflow is a Git workflow that helps with continuous software development and implementing DevOps practices. It was first published and made popular by Vincent Driessen at nvie. The Gitflow Workflow defines a strict branching model designed around the project release. This provides a robust framework for managing larger projects.

How it works

GitFlow are guidelines for the organization of our branches, and for this reason it sets standards for names and functions for each type of branch, they are:

  • master: contains your production code.
  • develop: contains the code for our next deploy, this means that as the features are being finalized they will be committed to this branch to later go through another step before being committed with the master.
  • feature/*: they are branches for the development of a specific functionality, by convention they have the name started by feature/, for example: feature/registration-users. It is important to note that these branches are always based on development.
  • hotfix/*: they are branches involved in making some critical correction found in production and that is why they are made from the master.
  • release/*: has a greater confidence that a branch is developing and that it is at a level of preparation to join a master and develop.

git-flow

Commands

# Initialize gitflow in the repository
git flow init

# Create feature
flow new feature registration-users

# Create release
flow new release v1.1

# Create hotfix
flow new hotfix correct-registration-users

# Publish changes
flow publish

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.