$ git checkout develop
$ git checkout -b Branch name to create
$ git push -u origin Created branch name
$ git add .
$ git commit -m "Commit content"
$ git push origin develop
Click the green Compare & pull request button in the upper right.
Fill in the pull request details.
Check which branch you want to pull request from.
-Example- Pull request from develop branch to sample branch
sample ... develop
git checkout develop
git pull origin develop
git checkout development branch
git merge origin develop
#After resolving the conflict content,
$ git add .
$ git commit -m "Commit content"
$git push origin development branch
$ git merge origin develop
Recommended Posts