Cloning a repo from someone else's Github and pushing it to a repo on my Github

前端 未结 8 1065
小鲜肉
小鲜肉 2021-01-29 17:18

I cloned the repo at https://github.com/railstutorial/sample_app_rails_4 and made a lot of changes to it (I used it as a starting point for my own app), and now I would like to

8条回答
  •  旧巷少年郎
    2021-01-29 17:55

    Taken from Git push everything to new origin

    basically you have to associate a new repo to your folder

    git remote add origin 
    git push origin

提交回复
热议问题