since i dont keep global credentials( good habit i think), there fore: 0. you can only push changes to the repo that is created/forked in the account you will be using
- open empty folder .open terminal there.
git clone <url>
. - close terminal. open terminal in the cloned repository now .
git init
.- set credentials for current session.
git config --global user.name <username>
andgit config --global user.email <email>
. - add your desired files now in the project.then go back to terminal.
git add .
thengit commit -m "message"
.git push - u origin master