Ubah asal jarak jauh menjadi garpu

1. Fork their repo on Github
2. In your local, rename your origin remote to upstream

    git remote rename origin upstream

3. Add a new origin

    git remote add origin [email protected]

4. Fetch & push

    git fetch origin
    git push origin
Yucky Yacare