Skip to content

Commit

Permalink
#319: omit already up to date (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-vcapgemini committed May 23, 2024
1 parent 430fff0 commit 8366998
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public void pull(Path targetRepository) {
this.processContext.directory(targetRepository);
ProcessResult result;
// pull from remote
result = this.processContext.addArg("--no-pager").addArg("pull").run(PROCESS_MODE);
result = this.processContext.addArg("--no-pager").addArg("pull").addArg("--quiet").run(PROCESS_MODE);

if (!result.isSuccessful()) {
Map<String, String> remoteAndBranchName = retrieveRemoteAndBranchName();
Expand Down

0 comments on commit 8366998

Please sign in to comment.