gqc-vtk
Steps to Synchronize gqc/vtk-js Repository with kitware/vtk-js
- Create new
gqc/vtk-jsrepository. - Clone it locally:
git clone git@github.com:yourusername/gqc-vtk-js.git - Change directory into the cloned repository:
cd gqc-vtk-js - Assign "upstream" to point at
kitware/vtk-js:git remote add upstream git@github.com:Kitware/vtk-js.git - Bring the current state of
upstream/masterto the local repository:git fetch upstream
git checkout master
git reset --hard upstream/master - Push force
upstream/mastertoorigin/master(where origin isgqc/vtk-js):git push origin master --force
By following these steps, our repository will match exactly the kitware repository, including commit history.