- Set your user name and email address:
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
- List all the settings Git:
$ git config --list
- Configure with editor:
$ git config --global core.editor emacs
- https://help.github.com/articles/fork-a-repo/
- https://guides.github.com/activities/forking/index.html
- To delete a local branch:
git branch -d the_local_branch
- To remove a remote branch (if you know what you are doing!):
git push origin :the_remote_branch