The existing incubator-trafodion contributors can migrate to contribute to apache/trafodion using the following steps:
1. Create a new workspace using git clone [email protected]@apache/trafodion<mailto:[email protected]@apache/trafodion> 1. Find the remote pointing to the existing fork. Usually, you would have created with your name. In my case git remote -v origin [email protected]:apache/trafodion (fetch) origin [email protected]:apache/trafodion (push) selvaganesang [email protected]:selvaganesang/incubator-trafodion (fetch) selvaganesang [email protected]:selvaganesang/incubator-trafodion (push) selvaganesang is my git id. 1. The existing cloned repository <your_git_id>/incubator-trafodion needs to be renamed as <your_git_id>/trafodion in the github. In github Go to profile->Repositories ->incubator-trafodion->settings Change the name from incubator-trafodion to trafodion 1. Change the remotes in your workspace to point to the new repository git remote rm <your_remote_id> git remote add <your_remote_id> [email protected]:<your_git_id>/trafodion<mailto:[email protected]:%3cyour_git_id%3e/trafodion> Then you can push in your change as before. If you are not concerned with having "incubator" in the fork name, you just need to do step 1 and use the existing remote. Selva
