Navigation Menu

Skip to content

How merge without Pull Request? #22354

Answered by Wabri
andr1972 asked this question in New to GitHub
Discussion options

You must be logged in to vote

I do not know if I understand the question, but I try to answer…

For the question of the title you can merge branch without pull request in your local machine, like the help page says:

git merge --help

the output is:

[...]

Assume the following history exists and the current branch is "master":

                 A---B---C topic
                /
           D---E---F---G

Then "git merge topic" will replay the changes made on the topic branch
since it diverged from master (i.e., E) until its current commit (C) on
top of master, and record the result in a new commit along with the names
of the two parent commits and a log message from the user describing the changes.

                 A---B--…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants