Skip to content
This repository has been archived by the owner on Jun 22, 2024. It is now read-only.

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	git@github.com:seleniumhq-community/docker-seleniarm.git (fetch)
origin	git@github.com: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.

Clone this wiki locally