godot-git-plugin icon indicating copy to clipboard operation
godot-git-plugin copied to clipboard

https://github.com/godotengine/godot-git-plugin/wiki/Git-plugin-v3#faqs recommends wrong format for PAT login to GitHub

Open ericlamotte opened this issue 1 year ago • 2 comments

https://github.com/godotengine/godot-git-plugin/wiki/Git-plugin-v3#faqs From my testing, the line

"Note the [email protected]:<organization>/<repository>.git format in the remote URL."

Should have the : changed to a / The image referenced immediately above is also incorrect.

ericlamotte avatar May 09 '24 05:05 ericlamotte

Should have the : changed to a /

This is strange, as [email protected]/organisation/repository.git is not a valid Git remote URL with Git 2.45.1.

git remote add example [email protected]/godotengine/godot.git      
git pull example

Results in:

fatal: '[email protected]/godotengine/godot.git' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

Calinou avatar May 20 '24 19:05 Calinou