Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
# Fetch a pull request
git fetch github pull/[number]/head:[topiclocalbranchname]
 
# Switch to develop branch
git checkout develop
 
# Merge the pulled feature branch
git merge [topiclocalbranchname]
 
# Run a build
gradlew clean build
 
# Push the changes
git push origin
 
# SKIP THIS STEP WHEN MERGING 'develop'
# delete the feature branch
git branch -d [topiclocalbranchname]