I want to pull all the changes from the main to my development branch without any error. How can I do that?
Asked
Active
Viewed 99 times
-4
-
2Does this answer your question? [Git merge branch into master](https://stackoverflow.com/questions/14605231/git-merge-branch-into-master) – Cromm Jan 03 '22 at 09:55
-
Depends on what the errors are. – mkrieger1 Jan 03 '22 at 09:59
-
3Conflicts are **not** errors. – Romain Valeri Jan 03 '22 at 10:13
1 Answers
0
It calls merge in git.
- Checkout to your development:
git checkout development
. - 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