starfive-tech / VisionFive2

445 stars 79 forks source link

Remove Requirement to have a Github Account #15

Open apcameron opened 1 year ago

apcameron commented 1 year ago

In order to even attempt to build it without a github account you need to run something like

find VisionFive2 -name * | xargs perl -p -i -e 's/git\@github.com\:/https:\/\/github.com\//g'

omac777 commented 1 year ago

The replace string you specified is incorrect. Your issue actually has been dealt with here. This approach makes it optional to have an account: https://github.com/starfive-tech/VisionFive2/issues/6

Please have a look. It mentions the exact relevant files that need to be tweaked with a longer replace string than what you specified.

NOISE FOLLOWS:

When you're up to going to the next level to contribute, it's all ready. Just create a github account and you are empowered as a developer to do "merge requests".
https://www.digitalocean.com/community/tutorials/how-to-create-a-pull-request-on-github https://cli.github.com/manual/examples.html

I hope it helps. Healthy happy Christmas and New Year.

apcameron commented 1 year ago

The Command I used was find VisionFive2 -type f -name "*" | xargs perl -p -i -e 's/git\@github\.com\:/https\:\/\/github.com\//g' Unfortunately, it was modified by github when I posted it.