Versions Compared

Key

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

...

Code Block
languagebash
git remote add github https://github.com/apache/incubator-fineract.git # for the website, replace incubator-fineract.git with incubator-fineract-site.git
Tip

You can use git remote -v to list all available remote repositories.

Fetching a pull request

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