Install Git
Overview
There are two options:
Install Git and Git Flow manually, and use Git via the command line or
Install Sourcefree app which comes with Git and Git-Flow builtin
Installing Git
Download Git for Windows
Run the installer, default options are fine
Open a Command Prompt (or Git Bash)
Run the following commands to configure your Git username and email
$ git config --global user.name "Firstname Lastname"
$ git config --global user.email "[email protected]"
Installing Git-Flow
Using Cygwin for windows:
wget -q -O - --no-check-certificate https://raw.github.com/petervanderdoes/gitflow-avh/develop/contrib/gitflow-installer.sh install stable | bash
Install Git with Sourcetree
Sourcetree has both Git and Git-Flow builtin.
Download Sourcetree
Run the installer
Last updated