Nir Levy
Nir Levy

Reputation: 2043

How do I merge a branch into a subfolder of my master branch?

I am inexperienced with git and use Github to host my website. I just finished an updated "new" branch. I want to merge New into a subfolder in Master so that I can share the link and get feedback before before I replace my current website.

Upvotes: 0

Views: 123

Answers (1)

Mamtha Soni K
Mamtha Soni K

Reputation: 965

Github pull requests (PR) are generally used for review purposes.

After committing and pushing the changes to the new branch, create a PR in Github from the new branch to merge the changes to master.

The person who is looking at the pull request can review the changes and provide the feedback on the PR.

Upvotes: 1

Related Questions