0
Hi guys! My question is about Github.
I moved files to a branch that is not main, and I want to move to the main branch (main). Is there a command in Git Bash to do this?
(In case it would be files from a single folder on my pc, I just want to exchange the files to the main branch!!).
Thank you in advance.
is referring to passing the files to the main branch? take a look at the
git merge <branch>
here in this article.– Cmte Cardeal
This answers your question? git merge or rebase
– tvdias
Thanks! Understanding how branchs work is essential. Git merge worked.
– Nakano