masterbranch is always production-ready, deployable, 100% green test suite- New development is done on feature branches, with frequent rebasing onto master
- Clean commit history by preferring to rebase instead of merge (
git pullis configured to automatically rebase)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Mbox Attachment Extractor | |
| ========================== | |
| Extract attachments from a large mbox file and save them to directories while managing filenames and progress. | |
| Usage: | |
| python3 script.py -i mailbox.mbox -o attachments/ --extensions .pdf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Rename file to .bashrc | |
| # Fedora/RHEL | |
| # from https://fedoraproject.org/wiki/Git_quick_reference | |
| # Update prompt to show current Git branch and commit status | |
| # (branch *) means tracked file is modified | |
| # (branch +) means tracked file is modified and staged with 'git add' | |
| # (branch %) means untracked files are in your tree | |
| # Combinations of markers are possible |
