You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/data/error.json
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -137,6 +137,12 @@
137
137
"title": "ssl certificate problem unable to get local issuer certificate",
138
138
"description": "It is a common git error encountered by users when attempting to push, pull, or clone a git repository with Git Bash, a Windows-specific command-line tool.",
139
139
"solutions": "{'git -c http.sslVerify=false clone [URL]':'Command to disable SSL certificate validation in git locally. For security considerations, it is not advised to disable SSL certificate validation. However, it is a possible solution to this issue.'}"
140
+
},
141
+
{
142
+
"type": "pull",
143
+
"title": "error: failed to push some refs to 'https://github.com/…'",
144
+
"description": "This error occurs when you try to push to a repository but your local branch is behind the remote branch and you need to pull the changes first.",
145
+
"solutions": "git fetch origin <git status <git merge origin/REMOTE-BRANCHNAME <\"local and remote changes needs to be resolved before pushing your changes.\" <git push origin BRANCHNAME"
0 commit comments