git log
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an> %Creset' --abbrev-commit"
vim ~/.gitconfig
git lg
git config --global url."https://${PRIVATE-ACCESS-TOKEN}:x-oauth-basic@github.com/ashappyasitis".insteadOf "https://github.com/ashappyasitis"
vim ~/.gitconfig
git remote -v
> git remote -v
origin https://github.com/ashappyasitis/my-api.git (fetch)
origin https://github.com/ashappyasitis/my-api.git (push)
git remote add kev https://github.com/ashappyasitis/my-new-api.git
> git remote -v
origin https://github.com/ashappyasitis/my-api.git (fetch)
origin https://github.com/ashappyasitis/my-api.git (push)
kev https://github.com/ashappyasitis/my-new-api.git (fetch)
kev https://github.com/ashappyasitis/my-new-api.git (push)
git remote rm kev
> git remote -v
origin https://github.com/ashappyasitis/my-api.git (fetch)
origin https://github.com/ashappyasitis/my-api.git (push)
git checkout master
git checkout -b feature/make-some-new-api