Answers for "github fork my own repo"

1

how to fork a repo in git

clicking the fork button in the upper right hand corner of a repo page
Posted by: Guest on January-19-2022
0

github fork my own repo

git clone https://github.com/userName/Repo New_Repo
cd New_Repo
git remote set-url origin https://github.com/userName/New_Repo
git remote add upstream https://github.com/userName/Repo
git push origin master
git push --all
Posted by: Guest on February-28-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language