From faa1d5612bae0d0b7b1f32f183a71df1127147d7 Mon Sep 17 00:00:00 2001 From: Michael Stanclift Date: Wed, 21 Oct 2020 12:54:09 -0500 Subject: [PATCH] Created Troubleshooting (markdown) --- Troubleshooting.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Troubleshooting.md diff --git a/Troubleshooting.md b/Troubleshooting.md new file mode 100644 index 0000000..aac477a --- /dev/null +++ b/Troubleshooting.md @@ -0,0 +1,14 @@ +### Updater Issues + +If the built in updater doesn't function as expected, you can manually run the git commands that operate under the covers. + +```bash +git fetch --all +git reset --hard origin/master +``` + +If your code is still not updating after this, reinstallation is suggested rather than spending all your time troubleshooting `git` commands. + +### Sudo No TTY + +If you get the error `sudo: a terminal is required to read the password` or `sudo: no tty present and no askpass program specified` during your execution, make sure you have [implemented passwordless sudo](https://linuxize.com/post/how-to-run-sudo-command-without-password/), as defined in the system requirements, for the user accounts on both the local and remote systems. \ No newline at end of file