@@ -15,12 +15,12 @@ integration service such as [Travis CI], [Appveyor] or [Buildbot].
1515
1616Let's take Travis CI as an example. If you send a pull request to a repository,
1717Travis CI instantly shows you the test result, which is great. However, after
18- several other pull requests are merged into the ` master ` branch, your pull
19- request can * still* break things after being merged into ` master ` . The
18+ several other pull requests are merged into the default branch, your pull
19+ request can * still* break things after being merged into the default branch . The
2020traditional continuous integration solutions don't protect you from this.
2121
2222In fact, that's why they provide the build status badges. If anything pushed to
23- ` master ` is completely free from any breakage, those badges will ** not** be
23+ the default branch is completely free from any breakage, those badges will ** not** be
2424necessary, as they will always be green. The badges themselves prove that there
2525can still be some breakages, even when continuous integration services are used.
2626
@@ -30,7 +30,7 @@ merge*, not just after the pull request is received. You can manually click the
3030automate this process. It listens to the pull request comments, waiting for an
3131approval comment from one of the configured reviewers. When the pull request is
3232approved, Homu tests it using your favorite continuous integration service, and
33- only when it passes all the tests, it is merged into ` master ` .
33+ only when it passes all the tests, it is merged into the default branch .
3434
3535Note that Homu is ** not** a replacement of Travis CI, Buildbot or Appveyor. It
3636works on top of them. Homu itself doesn't have the ability to test pull
0 commit comments