No one has implement a source control repository that uses stackoverflow answers as the backend?
```bash
soit clone https://stackoverflow.com/q/12345 --answer 67890 --branch my-so-project
cd my-so-project
ls
answer.md code0.js code1.js
nano code1.js
soit push
soit branch "refactored-solution"
# This push creates a brand new answer on the Stack Overflow post.soit push -m "Feat: A more performant and modern solution"
# Pull edits made by moderator, etc
soit pull
```