fatal git repository not found code example

Example 1: Error: Repository not found

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

Example 2: repository not found

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

Example 3: not a git repository fatal error

$ git clone git://cfdem.git.sourceforge.net/gitroot/cfdem/liggghts
Cloning into 'liggghts'...
remote: Counting objects: 3005, done.
remote: Compressing objects: 100% (2141/2141), done.
remote: Total 3005 (delta 1052), reused 2714 (delta 827)
Receiving objects: 100% (3005/3005), 23.80 MiB | 2.22 MiB/s, done.
Resolving deltas: 100% (1052/1052), done.

$ git status
fatal: Not a git repository (or any of the parent directories): .git
$ cd liggghts/
$ git status
# On branch master
nothing to commit (working directory clean)

Example 4: git github private fatal repository not found

git remote set-url origin https://[email protected]/aceofwings/RotairERP.git

Tags:

C Example