From a1b59a2b898ae9ea2c582ce1514308a0e769b34f Mon Sep 17 00:00:00 2001 From: Aaron Lichtman Date: Thu, 8 Nov 2018 05:36:24 -0600 Subject: [PATCH] Added public repo warning (#182) --- shallow_backup/prompts.py | 1 + 1 file changed, 1 insertion(+) diff --git a/shallow_backup/prompts.py b/shallow_backup/prompts.py index 61eca542..ebb165c7 100644 --- a/shallow_backup/prompts.py +++ b/shallow_backup/prompts.py @@ -30,6 +30,7 @@ def prompt_for_git_url(repo): Ask user if they'd like to add a remote URL to their git repo. If yes, do it. """ + print_red_bold("WARNING: If you back up to a public remote, make sure no sensitive information is in your backup.") if prompt_yes_no("Would you like to set a remote URL for this git repo?", Fore.GREEN): print_green_bold("Enter URL:") remote_url = input()