Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 663 Bytes

File metadata and controls

25 lines (17 loc) · 663 Bytes

Installation

Requirements

  1. Git

Installing Git

  1. Download Git
  2. Run the installer.
  3. Once installation is completed. Initialize Git in your project directory with command
    git init

Installing Gitflow

  1. For Windows, Git with 2.5.3 and above ships with git-flow (the AVH edition of it), so we don't explicitly need to install git-flow. Once git is initialized in the project directory, we can get started with git-flow.
  2. Initialize Gitflow in your project directory with command
    git flow init -d
    -d is used to choose default setting for git flow.