How To Install gitflow on CentOS 7

In this tutorial we learn how to install gitflow on CentOS 7. gitflow is Extensions providing operations for V. Driessen’s branching model

Introduction

In this tutorial we learn how to install gitflow on CentOS 7.

What is gitflow

A collection of Git extensions to provide high-level repository operations for Vincent Driessen’s [branching model](http For the best introduction to get started with git flow, please read Jeff Kreeftmeijer’s blog post http Or have a look at one of these screen casts * [A short introduction to git-flow] (http * [On the path with git-flow] (http Dave Bock)

We can use yum or dnf to install gitflow on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install gitflow.

Install gitflow on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install gitflow using yum by running the following command:

sudo yum -y install gitflow

Install gitflow on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install gitflow using dnf by running the following command:

sudo dnf -y install gitflow

How To Uninstall gitflow on CentOS 7

To uninstall only the gitflow package we can use the following command:

sudo dnf remove gitflow

References

Summary

In this tutorial we learn how to install gitflow on CentOS 7 using yum and dnf.