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
f8ea3eba
Commit
f8ea3eba
authored
Mar 19, 2010
by
Vincent Driessen
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'hotfix/0.2.1'
parents
097459c5
e0b54c07
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
16 deletions
+10
-16
Makefile
Makefile
+6
-7
README.mdown
README.mdown
+3
-8
git-flow-version
git-flow-version
+1
-1
No files found.
Makefile
View file @
f8ea3eba
AUTO_DETECTED_GIT_EXEC_PATH
:=
$(
shell
git
--exec-path
2>/dev/null
||
echo
/usr/libexec/git-core
)
GIT_EXEC_PATH
=
$(AUTO_DETECTED_GIT_EXEC_PATH)
prefix
=
/usr/local
# files that need mode 755
EXEC_FILES
=
git-flow
...
...
@@ -20,11 +19,11 @@ all:
install
:
@
test
-f
gitflow-shFlags
||
(
echo
"Run 'git submodule init && git submodule update' first."
;
exit
1
)
install
-d
-m
0755
$(
GIT_EXEC_PATH)
install
-m
0755
$(EXEC_FILES)
$(
GIT_EXEC_PATH)
install
-m
0644
$(SCRIPT_FILES)
$(
GIT_EXEC_PATH)
install
-d
-m
0755
$(
prefix)
/bin
install
-m
0755
$(EXEC_FILES)
$(
prefix)
/bin
install
-m
0644
$(SCRIPT_FILES)
$(
prefix)
/bin
uninstall
:
test
-d
$(
GIT_EXEC_PATH)
&&
\
cd
$(
GIT_EXEC_PATH)
&&
\
test
-d
$(
prefix)
/bin
&&
\
cd
$(
prefix)
/bin
&&
\
rm
-f
$(EXEC_FILES)
$(SCRIPT_FILES)
README.mdown
View file @
f8ea3eba
...
...
@@ -21,15 +21,10 @@ Then, you can install `git-flow`, using:
$ sudo make install
By default, this will look for the directory where Git is already installed,
and install the git-flow extension alongside the other Git subcommands. If git
is not on the system's `PATH`, it tries `/usr/libexec/git-core`. To explicitly
override this setting in case you have installed Git in another location, use:
By default, git-flow will be installed in /usr/local. To change the prefix
where git-flow will be installed, simply specify it explicitly, using:
$ sudo make GIT_EXEC_PATH=/your/custom/path install
You rarely need to override this manually, the default 'make install' should do
fine.
$ sudo make prefix=/opt/local install
Or simply point your `PATH` environment variable to your git-flow checkout
directory.
...
...
git-flow-version
View file @
f8ea3eba
...
...
@@ -11,7 +11,7 @@
# Copyright (c) 2010 by Vincent Driessen
# Copyright (c) 2010 by Benedikt Böhm
#
GITFLOW_VERSION=0.2
GITFLOW_VERSION=0.2
.1
usage() {
echo "usage: git flow version"
...
...
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