From fba1eb17c866acaf76d18576472fa671276864a7 Mon Sep 17 00:00:00 2001 From: stefdelec Date: Fri, 19 Feb 2021 14:44:17 +0100 Subject: [PATCH] feat(console): improve console log --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index d89a47c..c91c73f 100755 --- a/index.js +++ b/index.js @@ -65,7 +65,7 @@ if (argv.prettyPrint) { const filters = argv.filters ? argv.filters.split('|') : undefined; prettyPrint(commitFrom, groupBy, argv.output, title, filters); if (argv.addAll) { - console.log('Adding files to stage'); + console.log('Adding files to previous commit'); shortCut.ex('git add .') shortCut.ex('git commit --amend --no-edit') }