Last active
July 11, 2019 17:16
-
-
Save seabbs/0cac14a50d257eafc09acdf77317e279 to your computer and use it in GitHub Desktop.
Set up Oath access
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## For password management | |
git config --global user.email "[email protected]" | |
git config --global user.name "Sam Abbott" | |
git config --global credential.helper cache | |
git remote set-url origin https://github.com/USERNAME/REPOSITORY.git | |
# github settings | |
# developer settings | |
# create access token and copy | |
# git pull/push | |
# add user name | |
# copy in password when requested | |
# Pull/push in peace |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use for pull/push access when using two-factor authentication on docker etc. when ssh is not appropriate.