I did a:
git clone http://github/anotheruser/something.git my-space
and made some changes. Is there anyway I can create a git repository in my account and commit my changes to it? I am aware I should have forked.
thx
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The simplest solution is to fork the repository on GitHub, and then edit the
.git/configfile in your local copy so thatoriginpoints to your newly forked repository instead of the original one. You should then be able to push to it as normal.If you prefer, you can use this command instead of editing the file: