This repository was archived by the owner on Jun 22, 2024. It is now read-only.
forked from SeleniumHQ/docker-selenium
-
Notifications
You must be signed in to change notification settings - Fork 26
Initial Setup to Sync from Upstream
James Mortensen edited this page Dec 8, 2023
·
3 revisions
NOTE: This configures your git client to pull changes from upstream docker-selenium into docker-seleniarm. Once these steps are done, you won't need to do this again, unless you delete the workspace completely and do a fresh clone. Once the remote is added, it will remain added.
- Clone the docker-seleniarm repository
git clone https://github.com/SeleniumHQ-community/docker-seleniarm.git
- Add the docker-selenium upstream repo as a remote
git remote add upstream https://github.com/SeleniumHQ/docker-selenium.git
- Verify the remote is added with the following command, and you should see the following output:
$ git remote -v
origin [email protected]:seleniumhq-community/docker-seleniarm.git (fetch)
origin [email protected]:seleniumhq-community/docker-seleniarm.git (push)
upstream https://github.com/SeleniumHQ/docker-selenium.git (fetch)
upstream https://github.com/SeleniumHQ/docker-selenium.git (push)
Afterwards, see Sync Changes from Upstream.