Commit 13c94821 authored by Vincent Driessen's avatar Vincent Driessen

Added instructions to first fetch submodules before installing.

parent 99c80527
...@@ -18,6 +18,7 @@ all: ...@@ -18,6 +18,7 @@ all:
@echo " make uninstall" @echo " make uninstall"
install: install:
@test -f gitflow-shFlags || (echo "Run 'git submodule init && git submodule update' first." ; exit 1 )
install -d -m 0755 $(GIT_EXEC_PATH) install -d -m 0755 $(GIT_EXEC_PATH)
install -m 0755 $(EXEC_FILES) $(GIT_EXEC_PATH) install -m 0755 $(EXEC_FILES) $(GIT_EXEC_PATH)
install -m 0644 $(SCRIPT_FILES) $(GIT_EXEC_PATH) install -m 0644 $(SCRIPT_FILES) $(GIT_EXEC_PATH)
......
...@@ -12,7 +12,12 @@ blog post"). ...@@ -12,7 +12,12 @@ blog post").
Installing git-flow Installing git-flow
------------------- -------------------
To install `git-flow` as a real `git` subcommand, run: After downloading the sources from Github, also fetch the submodules:
$ git submodule init
$ git submodule update
Then, you can install `git-flow`, using:
$ sudo make install $ sudo make install
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment