github - how to clone private git and create a new one from it -
i'm working in group project. have have private git repo on github. want clone repo , name 'new repo' in such way new repo can accessed or modified me. change on old repo must not affect repo. possible?
keep in mind old git repo not created me, invited.
git clone repo.git
git remote remove origin
// because want remove completely.- create new repository on github manually.
git remote add origin git@github.com:user_name/new_repo.git
git push -u origin head
Comments
Post a Comment