Я хочу очистить пароль github и нашел ответ здесь: ссылка
git credential-osxkeychain erase
host=github.com
protocol=https
Но я хочу сделать это быстрее с Makefile.
Когда попробовать в консоли:
Step 1: enter command
git credential-osxkeychain erase
Step 2: enter parameters
host=github.com
protocol=https
Когда я пытаюсь сделать это с Makefile, каждая строка работает как другая команда, это неправильно:
clean:
git credential-osxkeychain erase
host=github.com
protocol=https
Как это сделать правильно?
Почему я это делаю? Потому что я хочу заставить github спрашивать мой пароль и адрес электронной почты при нажатии. Я много чего перепробовал, но отметить, что это не помогло (macOS Каталина):
git config --global credential.helper cache
git config --global credential.helper 'cache --timeout=1'
git config --local --unset credential.helper
git config --global --unset credential.helper
git config --system --unset credential.helper
Может быть, вы сейчас ответите?