Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Note
titleDraft: Work in Progress

This document is subject to change without notice.

After a contribution passed code review, it is time to pull the changes into the Apache Fineract repository, and merge it with the ongoing development effort.

...

Code Block
languagebash
# Fetch a pull request
git fetch github pull/[\#number]/head:[topic]
 
# Switch to develop branch
git checkout develop
 
# Merge the pulled feature branch
git merge [topic]
 
# Run a build
gradlew clean build
 
# Push the changes
git push origin
 
# delete the feature branch
git branch -d feature_awesome