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
8392ed32
Commit
8392ed32
authored
Jan 29, 2010
by
Vincent Driessen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Doesn't make sense to allow prefix names for commands that require $BRANCH to be absent.
parent
22ef21a1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
git-flow-feature
git-flow-feature
+4
-4
No files found.
git-flow-feature
View file @
8392ed32
...
@@ -107,13 +107,13 @@ parse_args() {
...
@@ -107,13 +107,13 @@ parse_args() {
parse_args_common
parse_args_common
}
}
parse_
start_args
() {
parse_
args_with_name_prefix
() {
NAME="$1"
NAME="$1"
parse_args_common
parse_args_common
}
}
cmd_start() {
cmd_start() {
parse_
start_args
"$@"
parse_
args_with_name_prefix
"$@"
# sanity checks
# sanity checks
gitflow_require_clean_working_tree
gitflow_require_clean_working_tree
...
@@ -248,7 +248,7 @@ helper_finish_cleanup() {
...
@@ -248,7 +248,7 @@ helper_finish_cleanup() {
}
}
cmd_publish() {
cmd_publish() {
parse_args "$@"
parse_args
_with_name_prefix
"$@"
# sanity checks
# sanity checks
gitflow_require_clean_working_tree
gitflow_require_clean_working_tree
...
@@ -274,7 +274,7 @@ cmd_publish() {
...
@@ -274,7 +274,7 @@ cmd_publish() {
}
}
cmd_track() {
cmd_track() {
parse_args "$@"
parse_args
_with_name_prefix
"$@"
# sanity checks
# sanity checks
gitflow_require_clean_working_tree
gitflow_require_clean_working_tree
...
...
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