Closed guidoferreyra closed 3 months ago
Hi @guidoferreyra, Greetings!
The customize.py function expects the Git remote URL to start with either https://github.com/
or git@github.com
. However, in your case, the remote URL format includes your GitHub username in the path, like https://[my-user-name]@github.com/[my-user-name]/[reponame].git.
Could you please check your current remote URL using the following command?
git remote -v
If necessary, you can update the Remote URL to the correct format using the command:
git remote set-url origin git@github.com:[my-user-name]/[reponame].git
After making this change, verify the updated remote URL with:
git remote -v
This adjustment should resolve the issue.
Cheers!
This worked perfectly, thanks!
When I run
make customize
I get the following:Any ideas, thanks!