Skip to content

Source code management

Pedro Bernáldez Torres edited this page Mar 20, 2019 · 2 revisions

Bring changes from Github

To bring changes from GitHub to the local repository, follow the following steps:

  1. Update the local repository: git fetch.
  2. Check the remote branches: git branch -a.
  3. Bring the remote branch: git branch <branch_name> <branch_path>_.
  4. Check if the previous step bring the remote branch: git branch -a.
  5. Checkout to the bring branch: checkout <branch_name>.

Clone this wiki locally