You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Extract all files from the archive, then move all files and directories, including the hidden one, from the thunderbird-$VER directory to the working tree.
tar --strip-component=1 -pxvf thunderbird-"$VER".source.tar.xz
Recursively remove .gitattributes files, .gitignore files, .gitmodules files and .git directories except the one in the top-level.
Update the index using all files in the entire working tree, then create a new commit with message of "chore: import v$VER".
git add -A
git commit -m "chore: import v$VER"
Create a lightweight tag with name of "v$VER".
git tag "v$VER"
Push the tarball branch and the tag just created to the remote.
git push
git push --tags
Create a new branch with name of "aosc/v$VER", pointing to the current HEAD, then switch to it.
git checkout -b "aosc/v$VER"
Apply all needed commits and/or patches.
Create a lightweight tag with name of "aosc/v$PKGEPOCH%$PKGVER-$PKGREL". If any of these variables equals zero, omit the related section and the corresponding separator. For the definition of these variables, refer to autobuild4.
git tag "aosc/v$PKGEPOCH%$PKGVER-$PKGREL"
Push the aosc/v$VER branch and the tag just created to the remote.