Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Changelog

#### 2.2.0-SNAPSHOT
* feat: add option to hotfix finish to allow for backmerge to release branch. Thank You [Bankers88](https://github.com/Bankers88)
* fix: Prevent hotfixes being merged to develop with nobackmerge flag. Thank You [adamrodger](https://github.com/adamrodger)
* feat(feature): add release sub command. Thank You [codesurf42](https://github.com/codesurf42) for the initial pr
* feat(init): add sign flag to create initial signed commit
* feat(init): add support for "Support Git Environment Credentials" pull request #19 from filipekiss/feature/environment_credentials
* docs: update repository url in source files
* docs: update copyright information in source files
* fix: wording for help text in git flow log pull request #15 from Shea690901/hotfix/git-flow-log_help-message
* refactor(git-flow): add support for busybox-readlink request #12 from KAction/readlink-busybox
#### 2.2.0
* feat(init): add option to sign initial commit (#59)
* feat(git-flow): add support for environment credentials (#19)
* feat(git-flow): add support for busybox(#12)
* feat(feature): add feature release command (#64)
* feat(hotfix): add cherrypick option to hotfix finish (#73)
* feat(hotfix): add backmerge option to release branch (#71)
* fix(hotfix): git flow hotfix finish -b still back-merges to develop (#66)
* fix(hotfix): git flow hotfix track fails due to branch name check (#68)
* fix: git flow log help message (#15)

#### 2.1.0
* feat: add create command to release allowing for a single step release prodution
Expand Down
6 changes: 5 additions & 1 deletion git-flow-hotfix
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ showcommands! Show git commands while executing them

cmd_finish() {
OPTIONS_SPEC="\
git flow hotfix finish [-h] [-F] [-s] [-u] [-m | -f ] [-p] [-k] [-n] [-b | -c] [-S] <version>
git flow hotfix finish [-h] [-F] [-s] [-u] [-m | -f ] [-p] [-k] [-n] [-b | -c | -r] [-S] <version>

Finish hotfix branch <version>
--
Expand Down Expand Up @@ -465,6 +465,10 @@ c,cherrypick Cherry Pick to $DEVELOP_BRANCH instead of merge
die "You can't use 'cherrypick' and 'releasebackmerge' together."
fi

if flag nobackmerge && flag releasebackmerge; then
die "You can't use 'nobackmerge' && 'releasebackmerge' together."
fi

# Sanity checks
require_branch "$BRANCH"
require_clean_working_tree
Expand Down
4 changes: 2 additions & 2 deletions git-flow-init
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ parse_args() {
# Default entry when no SUBACTION is given
cmd_default() {
OPTIONS_SPEC="\
git flow init [-h] [-d] [-f]
git flow init [-h] [-d] [-f] [-g]

Setup a git repository for git flow usage. Can also be used to start a git repository.
--
Expand Down Expand Up @@ -396,7 +396,7 @@ file= use given config file
[ "$answer" = "-" ] && prefix= || prefix=${answer:-$default_suggestion}
git_do config $gitflow_config_option gitflow.prefix.support "$prefix"
fi

# Version tag prefix
if ! git config --get gitflow.prefix.versiontag >/dev/null 2>&1 || flag force; then
if [ "$FLAGS_tag" != "" ]; then
Expand Down
2 changes: 1 addition & 1 deletion git-flow-version
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#


GITFLOW_VERSION=2.2.0-SNAPSHOT-2
GITFLOW_VERSION=2.2.0

initialize() {
# A function can not be empty. Comments count as empty.
Expand Down