-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
set -eu | ||
git branch -D cyy || true | ||
git push -d origin cyy || true | ||
|
||
# branches="build_system_fix fix_pybind fix_leak miscellaneous_fixes ubsan fix_performance msvc_ssize use_dynamic_cast move make_unique dropout_seed cxx20 reference detailed_error" | ||
branches="build_system_fix fix_pybind fix_leak miscellaneous_fixes ubsan fix_performance msvc_ssize use_dynamic_cast move dropout_seed cxx20 detailed_error" | ||
for branch in $branches; do | ||
echo "rebase ${branch}" | ||
git checkout ${branch} | ||
git rebase up/master | ||
git push --force | ||
echo "end rebase ${branch}" | ||
done | ||
git checkout -b cyy | ||
for branch in $branches; do | ||
echo "rebase ${branch}" | ||
git rebase ${branch} | ||
echo "end rebase ${branch}" | ||
done | ||
git push --set-upstream origin cyy |