There was an error while loading. Please reload this page.
This page describes migration of Git repositories to github.
git remote set-url origin git@github.com:phpmyadmin/phpmyadmin.git
git remote set-url origin git://github.com/phpmyadmin/phpmyadmin.git
git remote set-url origin
git://github.com/phpmyadmin/phpmyadmin.git
You generally don't need these recipes, these are just to prevent me forgetting them until the migration is done. --Nijel 10:52, 5 February 2012 (CET)
Pushing all branches from origin to github:
git branch -r | grep origin/ | grep -v HEAD | sed 's@.*/@@' | while read b ; do git checkout $b ; git push github $b:$b ; done
Do not forget to push tags:
git push --tags github
Category:Devel
Popular destinations:
User resources: