How do you deal with dependent branches on github?

In general, it's good practice to make branches that are independent from other changes and in general kept to a diff of ~500 lines in order to keep pull requests (PRs) easy to review. One issue though is how to deal with the scenario where you need to make more…

Using git with Django's SVN repository

Brian Rosner has produced a really nice screencast demonstrating ways to use git version control with Django's SVN repository. Especially of interest is how merging changes you've made in your git branch of Django with updates from the Django SVN repository is really straightforward.…