Fail to change the remote URL. #143146
-
Select Topic AreaGeneral BodyIssue: I encountered a critical issue when using GitHub repository to sync Logseq, with the following error message: fatal: unable to access 'https://github.saobby.my.eu.org.cnpmjs.org/youyungui/My-Knowledge-System.git/': LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com.cnpmjs.org:443. It appears that the root of the problem is that the remote URL of the GitHub repository was changed, causing sync issues. Environment: I am using the latest version of macOS, 15.1, configured via both the web and GitHub desktop client. Issue Manifestation: The GitHub repository's remote URL differs between the GitHub desktop client on different operating systems (Windows/macOS) and the website terminal results. For example, on macOS, the remote URL appears as https://github.saobby.my.eu.org.cnpmjs.org/youyungui/My-Knowledge-System.git, while on the GitHub desktop client on Windows and on the www.github.com website, the remote URL is displayed as https://github.com/youyungui/My-Knowledge-System.git. Methods Attempted: (1) Tried modifying the remote URL via the GitHub desktop client, but changes did not take effect. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
It looks like you're facing issues with changing the remote URL for your GitHub repository. Here’s a step-by-step approach to resolve this: Steps to Fix Remote URL Issues
Additional Notes
If these steps don’t resolve your issue, please provide any error messages that appear after trying them, and I’d be happy to assist further :) |
Beta Was this translation helpful? Give feedback.
It looks like you're facing issues with changing the remote URL for your GitHub repository. Here’s a step-by-step approach to resolve this:
Steps to Fix Remote URL Issues
Check Current Remote URL: Start by verifying the current remote URL in your terminal:
This will list all remote URLs associated with your repository.
Change Remote URL Using Terminal: Since you've attempted this already, ensure you run the command correctly:
After running this command, double-check with
git remote -v
to confirm the change.Edit
.git/config
File: If the terminal command didn’t work, you might have already ed…