git config credential.${remote}.username git config credential.${remote}.password
git config credential.username git config credential.password
https://github.com/bernardodesousa/odd-ball.git
git clone https://github.com//odd-ball.git
-> sync your fork git add <changed_file> git commit -m "Descriptive message about what you did" git push -> then browse to your fork page and click the pull request button
git remote add upstream https://github.com/bernardodesousa/odd-ball.git
git remote -v
git fetch upstream git checkout master git merge upstream/master
git checkout .