GitHub

Useful Git Commands

Some useful command for me to remember. When working on a new feature switch back to master do a git pull to get the latest and create a new branch. git branch my-new-feature Now switch to the new branch. git checkout my-new-feature After working on you feature you can push...

Switching To Githubs New Personal Access Token Authentication

Git has recently announced that at the beginning August 13, 2021, they will no longer accept account passwords when authenticating Git operations on GitHub.com. Panic sets in!!!!!! Don't panic its pretty easy. You can read up about the updates here. https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ I needed to setup a new repo and had...