From 47e408d5cd856012ebd755db814209d5caeabe8f Mon Sep 17 00:00:00 2001 From: Jeroen Engels Date: Wed, 11 May 2016 20:38:20 +0200 Subject: [PATCH] Prepend username with `@` in the default commit message (#17) --- lib/util/git.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util/git.js b/lib/util/git.js index 0cfe4ad..9711ad7 100644 --- a/lib/util/git.js +++ b/lib/util/git.js @@ -4,7 +4,7 @@ var path = require('path'); var spawn = require('child_process').spawn; var _ = require('lodash/fp'); -var commitTemplate = '<%= (newContributor ? "Add" : "Update") %> <%= username %> as a contributor'; +var commitTemplate = '<%= (newContributor ? "Add" : "Update") %> @<%= username %> as a contributor'; function getRemoteOriginData(cb) { var output = '';