We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Q: How to delete a branch on a public repo? A: Use git push origin :<BRANCH_NAME>
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
git log --format='%aN' <FILES> | sort | uniq -c