-4

I want to pull all the changes from the main to my development branch without any error. How can I do that?

1 Answers1

0

It calls merge in git.

  1. Checkout to your development: git checkout development.
  2. Merge from Main to development: git merge main

that's it.

If you have merge errors. You have to solve this errors in your code.

Maik Lowrey
  • 15,957
  • 6
  • 40
  • 79