Git: Push a new or existing repo to Github
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
# Create a new repository on the command line | |
touch README.md | |
git init | |
git add README.md | |
git commit -m "first commit" | |
git remote add origin https://github.com/c0ldlimit/vimcolors.git | |
git push -u origin master | |
# Push an existing repository from the command line | |
git remote add origin https://github.com/c0ldlimit/vimcolors.git | |
git push -u origin master |
remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.
This happened when i tried " git push -u origin main " from my terminal on my PC
Thanks! The date was helpful.
@codewizard13 in reference to the default branch name change, it remains a controversial topic, but here is a fairly unopinionated synopsis.
Thanks! Worked like a charm. Tried many other suggestions before this one. Thanks again.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm a developer. I am trying to do a git push for the first time in several years and am curious to see if this is going to be a blocker for me.