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
f1b3213e
Commit
f1b3213e
authored
Apr 17, 2011
by
Vincent Driessen
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of
https://github.com/kostiklv/gitflow
into develop
parents
20743608
f6fcc4ee
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
9 deletions
+10
-9
git-flow-feature
git-flow-feature
+4
-3
git-flow-hotfix
git-flow-hotfix
+3
-3
git-flow-release
git-flow-release
+3
-3
No files found.
git-flow-feature
View file @
f1b3213e
...
...
@@ -281,16 +281,17 @@ cmd_finish() {
require_clean_working_tree
# update local repo with remote changes first, if asked
if has "$ORIGIN/$BRANCH"
"$(git_remote_branches)"
; then
if has "$ORIGIN/$BRANCH"
$(git_remote_branches)
; then
if flag fetch; then
git fetch -q "$ORIGIN" "$BRANCH"
git fetch -q "$ORIGIN" "$DEVELOP_BRANCH"
fi
fi
if has "$ORIGIN/$BRANCH"
"$(git_remote_branches)"
; then
if has "$ORIGIN/$BRANCH"
$(git_remote_branches)
; then
require_branches_equal "$BRANCH" "$ORIGIN/$BRANCH"
fi
if has "$ORIGIN/$DEVELOP_BRANCH"
"$(git_remote_branches)"
; then
if has "$ORIGIN/$DEVELOP_BRANCH"
$(git_remote_branches)
; then
require_branches_equal "$DEVELOP_BRANCH" "$ORIGIN/$DEVELOP_BRANCH"
fi
...
...
git-flow-hotfix
View file @
f1b3213e
...
...
@@ -167,7 +167,7 @@ cmd_start() {
if flag fetch; then
git fetch -q "$ORIGIN" "$MASTER_BRANCH"
fi
if has "$ORIGIN/$MASTER_BRANCH"
"$(git_remote_branches)"
; then
if has "$ORIGIN/$MASTER_BRANCH"
$(git_remote_branches)
; then
require_branches_equal "$MASTER_BRANCH" "$ORIGIN/$MASTER_BRANCH"
fi
...
...
@@ -213,10 +213,10 @@ cmd_finish() {
git fetch -q "$ORIGIN" "$DEVELOP_BRANCH" || \
die "Could not fetch $DEVELOP_BRANCH from $ORIGIN."
fi
if has "$ORIGIN/$MASTER_BRANCH"
"$(git_remote_branches)"
; then
if has "$ORIGIN/$MASTER_BRANCH"
$(git_remote_branches)
; then
require_branches_equal "$MASTER_BRANCH" "$ORIGIN/$MASTER_BRANCH"
fi
if has "$ORIGIN/$DEVELOP_BRANCH"
"$(git_remote_branches)"
; then
if has "$ORIGIN/$DEVELOP_BRANCH"
$(git_remote_branches)
; then
require_branches_equal "$DEVELOP_BRANCH" "$ORIGIN/$DEVELOP_BRANCH"
fi
...
...
git-flow-release
View file @
f1b3213e
...
...
@@ -164,7 +164,7 @@ cmd_start() {
if flag fetch; then
git fetch -q "$ORIGIN" "$DEVELOP_BRANCH"
fi
if has "$ORIGIN/$DEVELOP_BRANCH"
"$(git_remote_branches)"
; then
if has "$ORIGIN/$DEVELOP_BRANCH"
$(git_remote_branches)
; then
require_branches_equal "$DEVELOP_BRANCH" "$ORIGIN/$DEVELOP_BRANCH"
fi
...
...
@@ -211,10 +211,10 @@ cmd_finish() {
git fetch -q "$ORIGIN" "$DEVELOP_BRANCH" || \
die "Could not fetch $DEVELOP_BRANCH from $ORIGIN."
fi
if has "$ORIGIN/$MASTER_BRANCH"
"$(git_remote_branches)"
; then
if has "$ORIGIN/$MASTER_BRANCH"
$(git_remote_branches)
; then
require_branches_equal "$MASTER_BRANCH" "$ORIGIN/$MASTER_BRANCH"
fi
if has "$ORIGIN/$DEVELOP_BRANCH"
"$(git_remote_branches)"
; then
if has "$ORIGIN/$DEVELOP_BRANCH"
$(git_remote_branches)
; then
require_branches_equal "$DEVELOP_BRANCH" "$ORIGIN/$DEVELOP_BRANCH"
fi
...
...
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