Skip to content
mpusz edited this page Feb 10, 2011 · 4 revisions

Q: How to delete a branch on a public repo?
A: Use git push origin :<BRANCH_NAME>


Q: How to find who contributed to specific files in a project?
A: Use git log --format='%aN' <FILES> | sort | uniq -c

Clone this wiki locally