Skip to content

Commit

Permalink
git-node: mention --continue has to be done (#368)
Browse files Browse the repository at this point in the history
Its not obvious to first-time users.
  • Loading branch information
sam-github authored and joyeecheung committed Oct 4, 2019
1 parent e60bc6a commit 072bdf1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/landing_session.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,9 @@ class LandingSession extends Session {
const suggestion = this.getRebaseSuggestion(subjects);

cli.log(`There are ${subjects.length} commits in the PR`);
cli.log('Please run the following command to complete landing\n\n' +
`$ ${suggestion}`);
cli.log('Please run the following commands to complete landing\n\n' +
`$ ${suggestion}\n` +
`$ git node land --continue`);
}

async apply() {
Expand Down

0 comments on commit 072bdf1

Please sign in to comment.