The git command on a git bash installed in Windows causes various problems.
You can use git --version
to verify the git installation.
The git clone
command looks like this:
git clone https://~~
Cloning into 'source'...
fatal: enable to access 'https://~~': Failed to connect to PC port 8080: Connection refused
When I try to set up a remote repository, it looks like this:
git remote set-url origin https://github.com/~~
fatal —No such remote 'origin'
Do you know what's wrong with connecting to GitHub?
windows git github git-bash
Try the following:
git remote add origin https://github.com/~~
From the second time, set-url
is available.
1038 M2 Mac fails to install rbenv install 3.1.3 due to errors
875 GDB gets version error when attempting to debug with the Presense SDK (IDE)
1070 Uncaught (inpromise) Error on Electron: An object could not be cloned
1589 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
© 2025 OneMinuteCode. All rights reserved.