File indexing completed on 2024-04-14 04:35:02

0001 #!/usr/bin/env fish
0002 set newbranch 5.1
0003 for repo in kdevelop kdevplatform kdev-python kdev-php;
0004         cs $repo
0005         git checkout master
0006         git pull --rebase
0007         git checkout -b $newbranch
0008         git push origin $newbranch
0009 end