mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
15 lines
355 B
Text
15 lines
355 B
Text
cd ~/pr.upp.git # do not do this in upp.git
|
|
|
|
# copy this text from from github:
|
|
|
|
git checkout -b <source-branch-name> master
|
|
git pull https://github.com/theriverman/ultimatepp.git master
|
|
|
|
# (it will need to merge to current master)
|
|
|
|
# now merge and commit to svn
|
|
|
|
git checkout master
|
|
git merge --no-ff <source-branch-name>
|
|
git svn dcommit
|
|
|