Skip to content

Latest commit

 

History

History
69 lines (49 loc) · 1.48 KB

git-flow-instalacao.md

File metadata and controls

69 lines (49 loc) · 1.48 KB

Instalação do git-flow

Esse tutorial segue o guia oficial do criador da extensão.

Para instalar a extensão, escolha abaixo o seu sistema operacional:

  1. Mac OS X
  2. Linux
  3. Windows

Mac OS X

Utilizando o Homebrew:

$ brew install git-flow

Utilizando MacPorts:

$ port install git-flow

Utilizando o wget:

$ wget --no-check-certificate -q -O - https://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | sudo bash

wget: command not found? Com o curl, são apenas duas linhas:

$ curl -L -O https://raw.github.com/nvie/gitflow/develop/contrib/gitflow-installer.sh
$ sudo bash gitflow-installer.sh

Linux

Instalando no Ubuntu ou Debian:

$ apt-get install git-flow

Instalando no Archlinux:

$ yay -S gitflow-avh

Instalando no Fedora:

$ sudo dnf install gitflow

Instalando em outros Linux:

$ curl -OL https://raw.github.com/nvie/gitflow/develop/contrib/gitflow-installer.sh
$ chmod +x gitflow-installer.sh
$ sudo ./gitflow-installer.sh

Windows

Para os usuários windows, o Git for Windows já inclui a extensão.

Caso não queira utilizar o Git for Windows, o Cygwin faz isso por você:

$ wget -q -O - --no-check-certificate https://raw.github.com/petervanderdoes/gitflow-avh/develop/contrib/gitflow-installer.sh install stable | bash