forked from petervanderdoes/gitflow-avh
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
If a tag message is given, the message can be modified using the filters: - filter-flow-hotfix-finish-tag-message - filter-flow-release-finish-tag-message - filter-flow-release-branch-tag-message
- Loading branch information
1 parent
bcb8a49
commit 932669e
Showing
5 changed files
with
92 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/sh | ||
# | ||
# Runs during git flow hotfix finish and a tag message is given | ||
# | ||
# Positional arguments: | ||
# $1 Message | ||
# $2 Full version | ||
# | ||
# Return MESSAGE | ||
# | ||
# The following variables are available as they are exported by git-flow: | ||
# | ||
# MASTER_BRANCH - The branch defined as Master | ||
# DEVELOP_BRANCH - The branch defined as Develop | ||
# | ||
MESSAGE="$1" | ||
|
||
# Implement your script here. | ||
|
||
# Return the MESSAGE | ||
echo "${MESSAGE}" | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/sh | ||
# | ||
# Runs during git flow release branch and a tag message is given | ||
# | ||
# Positional arguments: | ||
# $1 Message | ||
# $2 Full version | ||
# | ||
# Return MESSAGE | ||
# | ||
# The following variables are available as they are exported by git-flow: | ||
# | ||
# MASTER_BRANCH - The branch defined as Master | ||
# DEVELOP_BRANCH - The branch defined as Develop | ||
# | ||
MESSAGE="$1" | ||
|
||
# Implement your script here. | ||
|
||
# Return the MESSAGE | ||
echo "${MESSAGE}" | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/sh | ||
# | ||
# Runs during git flow release finish and a tag message is given | ||
# | ||
# Positional arguments: | ||
# $1 Message | ||
# $2 Full version | ||
# | ||
# Return MESSAGE | ||
# | ||
# The following variables are available as they are exported by git-flow: | ||
# | ||
# MASTER_BRANCH - The branch defined as Master | ||
# DEVELOP_BRANCH - The branch defined as Develop | ||
# | ||
MESSAGE="$1" | ||
|
||
# Implement your script here. | ||
|
||
# Return the MESSAGE | ||
echo "${MESSAGE}" | ||
exit 0 |