repository not found code example

Example 1: remote: Repository not found.

git remote rm origin

Example 2: remote: Repository not found. fatal: repository 'https://github.com/samuraiED87/carrinho_livewire_exemplo.git/' not found

$ git credential-manager uninstall

$ git credential-manager install

Example 3: Error: Repository not found

git remote add origin  https://USERNAME:[email protected]/username/reponame.git

Example 4: repository not found

git remote set-url origin https://[email protected]/aceofwings/RotairERP.git
//your repository is probably private

Example 5: cloning a repository that says not found

git credential-osxkeychain erase
host=github.com
protocol=https

Example 6: remote: Repository not found. fatal: repository 'https://github.com/samuraiED87/carrinho_livewire_exemplo.git/' not found

git add .
git commit -m "force push"
git push origin master --force

Tags:

C Example