Joined May 2011
·
Achievements
52 Karma
0 Total ProTip Views

Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos

Python 3
Have at least three original repos where Python is the dominant language

Raven
Have at least one original repo where some form of shell script is the dominant language

Python
Would you expect anything less? Have at least one original repo where Python is the dominant language

Charity
Fork and commit to someone's open source project in need
More tips:
If you're working with a team and you're the one who deploy the code:
init and setup the deploy server repo
on your git repo, use git remote add deploy %serverdeployurl%
optional: setup a branch for deployment if you have some extra configuration, or just use master. If you use a branch, make sure you checked out the correct branch in post-receive hook
use git push deploy master (or name of your deployment branch)