Skip to content

Commit 203360c

Browse files
committed
Add script to rebase forks onto this repo's HEAD
1 parent dfe0aac commit 203360c

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

rebase_forks.sh

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#! /usr/bin/env bash
2+
3+
git checkout master
4+
git fetch origin
5+
git rebase origin/master
6+
git push
7+
8+
9+
git checkout PyMassSpec
10+
git rebase origin/master
11+
git push PyMassSpec HEAD:master --force
12+
13+
14+
git checkout python-coincidence
15+
git rebase origin/master
16+
git push python-coincidence HEAD:master --force
17+
18+
19+
git checkout python-formate
20+
git rebase origin/master
21+
git push python-formate HEAD:master --force
22+
23+
24+
git checkout sphinx-toolbox
25+
git rebase origin/master
26+
git push sphinx-toolbox HEAD:master --force
27+
28+
git checkout master

0 commit comments

Comments
 (0)