From c435dff164dcb471fb1658c2d2933a7fc81ce0ff Mon Sep 17 00:00:00 2001 From: Matthew Johnson Date: Fri, 19 Jan 2018 14:44:33 -0800 Subject: [PATCH] Improve instructions for --skip-git The user should be told they need to add relevant files before they commit. Signed-off-by: Matthew Johnson --- autospec/autospec.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/autospec/autospec.py b/autospec/autospec.py index 0b32061..b49383d 100644 --- a/autospec/autospec.py +++ b/autospec/autospec.py @@ -352,7 +352,8 @@ def package(args, url, name, archives, workingdir, infile_dict): if args.git: git.commit_to_git(build.download_path) else: - print("To commit your changes, run 'git commit -F commitmsg'") + print("To commit your changes, git add the relevant files and " + "run 'git commit -F commitmsg'") if __name__ == '__main__':