forked from devvsakib/DevToolsArena
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added new error, description and its solution in errors list. Related to Issue ID devvsakib#172
- Loading branch information
1 parent
5e17251
commit 5c1b156
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,6 +131,12 @@ | |
"title": "fatal: remote origin already exists", | ||
"description": "It happens when you attempt to change the repository origin URL after cloning it from GitHub or another remote repository to your local machine.", | ||
"solutions": "['Update the existing remote URL, use the set-url command', 'rename the existing remote, run git rename with the remote']" | ||
}, | ||
{ | ||
"type": "push", | ||
"title": "Permission denied (Public Key) fatal: Could not read from remote repository", | ||
"description": "This error typically occurs when you try to access a Git repository using the SSH protocol, but the authentication with your SSH key fails. This error is usually related to SSH key misconfiguration or access issues.", | ||
"solutions": "1) Ensure your SSH key is set up correctly on your local machine. 2) Verify that the SSH agent is running and your key is added to it using ssh-add. 3) Check the remote URL for the Git repository; it should be in SSH format ([email protected]:username/repo.git). 4) Test the SSH connection to GitHub with ssh -T [email protected]. 5) Ensure there are no firewalls or proxies blocking SSH connections. 6) Optionally, you can use the HTTPS protocol if SSH continues to cause problems." | ||
}, | ||
{ | ||
"type": "cmd", | ||
|