git add -u
git commit $git_quiet -m $'make update\n\nRelease: yes'
if [ -n "$reviewers" ]; then
- addrev --nopr $reviewers
+ addrev --release --nopr $reviewers
fi
fi
git add -u
git commit $git_quiet -m "Prepare for release of $release_text"$'\n\nRelease: yes'
if [ -n "$reviewers" ]; then
- addrev --nopr $reviewers
+ addrev --release --nopr $reviewers
fi
echo "Tagging release with tag $tag. You may need to enter a pass phrase"
git tag$tagkey "$tag" -m "OpenSSL $release release tag"
git add -u
git commit $git_quiet -m "Prepare for $release_text"$'\n\nRelease: yes'
if [ -n "$reviewers" ]; then
- addrev --nopr $reviewers
+ addrev --release --nopr $reviewers
fi
# Push everything to the parent repo
git add -u
git commit $git_quiet -m "Prepare for $release_text"$'\n\nRelease: yes'
if [ -n "$reviewers" ]; then
- addrev --nopr $reviewers
+ addrev --release --nopr $reviewers
fi
fi
When merging them into the main repository, do it like this:
- git push openssl-git@git.openssl.org:openssl.git \\
+ git push git@github.openssl.org:openssl/openssl.git \\
$tmp_release_branch:$release_branch
- git push openssl-git@git.openssl.org:openssl.git \\
+ git push git@github.openssl.org:openssl/openssl.git \\
$tmp_update_branch:$update_branch
- git push openssl-git@git.openssl.org:openssl.git \\
+ git push git@github.openssl.org:openssl/openssl.git \\
$tag
EOF
else
When merging it into the main repository, do it like this:
- git push openssl-git@git.openssl.org:openssl.git \\
+ git push git@github.openssl.org:openssl/openssl.git \\
$tmp_release_branch:$release_branch
- git push openssl-git@git.openssl.org:openssl.git \\
+ git push git@github.openssl.org:openssl/openssl.git \\
$tag
EOF
fi