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
d29e315f
Commit
d29e315f
authored
Feb 09, 2010
by
Vincent Driessen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Annotated the code with some TODO-notes.
parent
5fa4758e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
git-flow-hotfix
git-flow-hotfix
+2
-0
git-flow-release
git-flow-release
+3
-0
No files found.
git-flow-hotfix
View file @
d29e315f
...
@@ -201,6 +201,8 @@ cmd_finish() {
...
@@ -201,6 +201,8 @@ cmd_finish() {
git checkout $DEVELOP_BRANCH || \
git checkout $DEVELOP_BRANCH || \
die "Could not check out $DEVELOP_BRANCH."
die "Could not check out $DEVELOP_BRANCH."
# TODO: Actually, accounting for 'git describe' pays, so we should
# ideally git merge --no-ff $tagname here, instead!
git merge --no-ff $BRANCH || \
git merge --no-ff $BRANCH || \
die "There were merge conflicts."
die "There were merge conflicts."
# TODO: What do we do now?
# TODO: What do we do now?
...
...
git-flow-release
View file @
d29e315f
...
@@ -206,6 +206,9 @@ cmd_finish() {
...
@@ -206,6 +206,9 @@ cmd_finish() {
if ! gitflow_is_branch_merged_into $BRANCH $DEVELOP_BRANCH; then
if ! gitflow_is_branch_merged_into $BRANCH $DEVELOP_BRANCH; then
git checkout $DEVELOP_BRANCH || \
git checkout $DEVELOP_BRANCH || \
die "Could not check out $DEVELOP_BRANCH."
die "Could not check out $DEVELOP_BRANCH."
# TODO: Actually, accounting for 'git describe' pays, so we should
# ideally git merge --no-ff $tagname here, instead!
git merge --no-ff $BRANCH || \
git merge --no-ff $BRANCH || \
die "There were merge conflicts."
die "There were merge conflicts."
# TODO: What do we do now?
# TODO: What do we do now?
...
...
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