fatal: ‘origin’ does not appear to be a git repository
$HOME/.gitconfig is your global config for git. There are three levels of config files. cat $(git rev-parse –show-toplevel)/.git/config (mentioned by bereal) is your local config, local to the repo you have cloned. you can also type from within your repo: git remote -v And see if there is any remote named ‘origin’ listed in it. … Read more