Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitflow
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tools
gitflow
Commits
e26bfbc5
Commit
e26bfbc5
authored
Nov 02, 2010
by
Alexander Groß
Committed by
Vincent Driessen
Nov 02, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding more detailed installation information for Windows users on Cygwin and msysgit
parent
61f2c691
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
5 deletions
+40
-5
README.mdown
README.mdown
+40
-5
No files found.
README.mdown
View file @
e26bfbc5
...
@@ -7,24 +7,59 @@ blog post").
...
@@ -7,24 +7,59 @@ blog post").
Installing git-flow
Installing git-flow
-------------------
-------------------
If you're on a Mac and use "homebrew":http://github.com/mxcl/homebrew, it's simple:
### Mac OS
If you're on a Mac and use [homebrew](http://github.com/mxcl/homebrew), it's simple:
$ brew install git-flow
$ brew install git-flow
If you're on a Mac and use
"MacPorts":http://macports.org/
, it's simple:
If you're on a Mac and use
[MacPorts](http://macports.org/)
, it's simple:
$ port install git-flow
$ port install git-flow
### Linux, etc.
Another easy way to install git-flow is using Rick Osborne's excellent git-flow
Another easy way to install git-flow is using Rick Osborne's excellent git-flow
installer, which can be run using the following command:
installer, which can be run using the following command:
$ wget -q -O - http://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | sudo sh
$ wget -q -O - http://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | sudo sh
For __Windows__ users who wish to use the automated install, it is suggested that you install [Cygwin](http://www.cygwin.com/)
### Windows
first to install tools like sh and wget. Then simply follow the command:
#### Using Cygwin
For Windows users who wish to use the automated install, it is suggested that you install [Cygwin](http://www.cygwin.com/)
first to install tools like `git`, `util-linux` and `wget` (with those three being packages that can be selected
during installation). Then simply run this command from a Cygwin shell:
$ wget -q -O - http://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | sh
#### Using msysgit
This is much like the manual installation below, but there are additional steps required to install some extra tools that
are not distributed with [msysgit](http://code.google.com/p/msysgit/).
After cloning the git-flow sources from Github, also fetch the submodules:
$ git submodule init
$ git submodule update
Copy git-flow's relevant files to your msysgit installation directory:
$ mkdir /usr/local/bin
$ cp git-flow* gitflow* /usr/local/bin/
$ cp shFlags/src/shflags /usr/local/bin/gitflow-shFlags
Next up we need to borrow a couple of binaries from [Cygwin](http://www.cygwin.com/). If you don't have Cygwin installed, please
install it including the `util-linux` package. Apart from `util-linux`'s dependencies, no other packages are required. When you
finished installation, copy the following files using msysgit's _Git Bash_. We assume the Cygwin's default installation path in C:\cygwin.
$ cd /c/cygwin/
$ cp bin/getopt.exe /usr/local/bin/
$ cp bin/cyggcc_s-1.dll /usr/local/bin/
$ cp bin/cygiconv-2.dll /usr/local/bin/
$ cp bin/cygintl-8.dll /usr/local/bin/
$ cp bin/cygwin1.dll /usr/local/bin/
C:\> wget -q -O - http://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | sh
After copying the files above, you can safely uninstall your Cygwin installation by deleting the C:\cygwin directory.
### Manual installation
If you prefer a manual installation, please use the following instructions.
If you prefer a manual installation, please use the following instructions.
After downloading the sources from Github, also fetch the submodules:
After downloading the sources from Github, also fetch the submodules:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment