14 | | 0 stallman:/srv/roundcube# git remote update |
| 13 | mkdir roundcube |
| 14 | 0 jamie@animal:mfpl$ mkdir roundcube |
| 15 | 0 jamie@animal:mfpl$ cd roundcube/ |
| 16 | 0 jamie@animal:roundcube$ git init |
| 17 | Initialized empty Git repository in /home/jamie/projects/mfpl/roundcube/.git/ |
| 18 | 0 jamie@animal:roundcube$ git remote add origin https://github.com/roundcube/roundcubemail |
| 19 | 0 jamie@animal:roundcube$ git remote add mfpl gitosis@git.mayfirst.org:mfpl/roundcube |
| 20 | 0 jamie@animal:roundcube$ git remote add mfpl-live roundcube-code@stallman.mayfirst.org:/srv/roundcube |
| 21 | 0 jamie@animal:roundcube$ git remote add mfpl-dev roundcube-code@stallman.mayfirst.org:/srv/roundcube-dev |
| 22 | 0 jamie@animal:roundcube$ git remote update |
16 | | remote: Counting objects: 5011, done. |
17 | | remote: Compressing objects: 100% (1317/1317), done. |
18 | | remote: Total 4039 (delta 3072), reused 3652 (delta 2698) |
19 | | Receiving objects: 100% (4039/4039), 1.34 MiB | 2.53 MiB/s, done. |
20 | | Resolving deltas: 100% (3072/3072), completed with 336 local objects. |
| 24 | remote: Counting objects: 60301, done. |
| 25 | remote: Compressing objects: 100% (15914/15914), done. |
| 26 | remote: Total 60301 (delta 43892), reused 59892 (delta 43566) |
| 27 | Receiving objects: 100% (60301/60301), 16.07 MiB | 1.71 MiB/s, done. |
| 28 | Resolving deltas: 100% (43892/43892), done. |
23 | | 74cd0a9..e7c1aad master -> origin/master |
24 | | 377793d..268a28e release-0.7 -> origin/release-0.7 |
25 | | 9019025..d05808a release-0.8 -> origin/release-0.8 |
| 31 | * [new branch] devel-ldap-refactoring -> origin/devel-ldap-refactoring |
| 32 | * [new branch] keep-alive -> origin/keep-alive |
| 33 | * [new branch] master -> origin/master |
| 34 | * [new branch] release-0.6 -> origin/release-0.6 |
| 35 | * [new branch] release-0.7 -> origin/release-0.7 |
| 36 | * [new branch] release-0.8 -> origin/release-0.8 |
| 54 | remote: Counting objects: 4182, done. |
| 55 | remote: Compressing objects: 100% (1135/1135), done. |
| 56 | remote: Total 3429 (delta 2507), reused 3142 (delta 2287) |
| 57 | Receiving objects: 100% (3429/3429), 972.47 KiB | 1.47 MiB/s, done. |
| 58 | Resolving deltas: 100% (2507/2507), completed with 347 local objects. |
| 59 | From git.mayfirst.org:mfpl/roundcube |
| 60 | * [new branch] master -> mfpl/master |
| 61 | * [new branch] mfpl -> mfpl/mfpl |
| 62 | Fetching mfpl-live |
| 63 | remote: Counting objects: 47, done. |
| 64 | remote: Compressing objects: 100% (26/26), done. |
| 65 | remote: Total 26 (delta 15), reused 0 (delta 0) |
| 66 | Unpacking objects: 100% (26/26), done. |
| 67 | From stallman.mayfirst.org:/srv/roundcube |
| 68 | * [new branch] master -> mfpl-live/master |
| 69 | * [new branch] mfpl -> mfpl-live/mfpl |
| 70 | * [new branch] release-0.7 -> mfpl-live/release-0.7 |
| 71 | * [new branch] release-0.8 -> mfpl-live/release-0.8 |
| 72 | Fetching mfpl-dev |
| 73 | remote: Counting objects: 28, done. |
| 74 | remote: Compressing objects: 100% (20/20), done. |
| 75 | remote: Total 20 (delta 11), reused 0 (delta 0) |
| 76 | Unpacking objects: 100% (20/20), done. |
| 77 | From stallman.mayfirst.org:/srv/roundcube-dev |
| 78 | * [new branch] master -> mfpl-dev/master |
| 79 | * [new branch] mfpl -> mfpl-dev/mfpl |
| 80 | * [new branch] release-0.7 -> mfpl-dev/release-0.7 |
| 81 | * [new branch] release-0.8 -> mfpl-dev/release-0.8 |
| 82 | 0 jamie@animal:roundcube$ |
| 83 | }}} |
| 84 | * Now, checkout (and create a branch) for the mfpl branch of the mfpl remote (yes, confusing to have the same name for both). |
| 85 | {{{ |
| 86 | 0 jamie@animal:roundcube$ git checkout -b mfpl mfpl/mfpl |
| 87 | Branch mfpl set up to track remote branch mfpl from mfpl. |
| 88 | Switched to a new branch 'mfpl' |
| 89 | 0 jamie@animal:roundcube$ |
| 90 | }}} |
| 91 | * If you run `git log` you'll see several commits made by MF/PL support team members. We want to keep these commits on top, so next we will rebase the tag we want to upgrade to: |
| 92 | {{{ |