Skip to content

Commit de81c91

Browse files
committed
new error added
1 parent c32697e commit de81c91

1 file changed

Lines changed: 24 additions & 18 deletions

File tree

src/data/error.json

Lines changed: 24 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -79,22 +79,28 @@
7979
"solutions": "git config --global --unset http.proxy<git config --global user.name \"user name\"<git config --global user.email \"user email\""
8080
},
8181
{
82-
"type": "commit",
83-
"title": "Please enter the commit message for your changes",
84-
"description": "This error occurs when you attempt to commit changes to a Git repository without specifying a commit message, keep in mind it is also a good practice to include a more detailed explanation of the changes made in the commit message",
85-
"solutions": "git commit -m \"commit message\""
86-
},
87-
{
88-
"type": "commit",
89-
"title": "fatal: Not a git repository (or any of the parent directories): .git",
90-
"description": "This error occurs when you attempt to commit without initiating a git repository, before initiating always make sure either you are in root directory or correct directory where you want to initiate git ",
91-
"solutions": "git init"
92-
},
93-
{
94-
"type": "add",
95-
"title": "fatal: pathspec 'dummyFile.extension' did not match any files",
96-
"description": "This error occurs when you attempt to add files in to git but git cannot find correct path to the file from current directory , always make sure there isn't any typo",
97-
"solutions": "git add --all || git add '/correct path to file/' "
98-
}
99-
]
82+
"type": "commit",
83+
"title": "Please enter the commit message for your changes",
84+
"description": "This error occurs when you attempt to commit changes to a Git repository without specifying a commit message, keep in mind it is also a good practice to include a more detailed explanation of the changes made in the commit message",
85+
"solutions": "git commit -m \"commit message\""
86+
},
87+
{
88+
"type": "commit",
89+
"title": "fatal: Not a git repository (or any of the parent directories): .git",
90+
"description": "This error occurs when you attempt to commit without initiating a git repository, before initiating always make sure either you are in root directory or correct directory where you want to initiate git ",
91+
"solutions": "git init"
92+
},
93+
{
94+
"type": "push",
95+
"title": "ssh: connect to host github.com port 22: Connection timed out",
96+
"description": "fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.",
97+
"solutions": "git init"
98+
},
99+
{
100+
"type": "add",
101+
"title": "fatal: pathspec 'dummyFile.extension' did not match any files",
102+
"description": "This error occurs when you attempt to add files in to git but git cannot find correct path to the file from current directory , always make sure there isn't any typo",
103+
"solutions": "git add --all || git add '/correct path to file/' "
104+
}
105+
]
100106
}

0 commit comments

Comments
 (0)