mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-22 04:10:48 +00:00
SCRIPTS: create-release: show the correct origin name in suggested commands
create-release shows the next steps at the end and suggest to use "git push origin master" but on my machine it's not "origin" so let's determine it using git config and only use origin as a fall back.
This commit is contained in:
parent
f3ce0418aa
commit
ff0c8424c8
@ -225,8 +225,9 @@ read
|
||||
do_commit || die "Failed to commit changes"
|
||||
do_tag || die "Failed to tag changes"
|
||||
|
||||
remote=$(git config --get branch.master.remote)
|
||||
echo "Do not forget to push updates, publish and announce this version :"
|
||||
echo
|
||||
echo "git push origin master v$NEW"
|
||||
echo "git push ${remote:-origin} master v$NEW"
|
||||
echo "${0%/*}/publish-release"
|
||||
echo "${0%/*}/announce-release"
|
||||
|
Loading…
Reference in New Issue
Block a user