Fossil Software
Cheatsheet
- Cheatsheet: Fossil version control software
- fossil - FossilSCM, ignoring files on add - Stack Overflow
Tutorial
fossil clone https://fossil-scm.org/ myclone.fossil
fossil clone https://remoteuserid@www.example.org/ myclone.fossil
fossil open myclone.fossil
# See change in files
fossil status
# To Add remember to use
fossil addremove
fossil add .
# Commit
fossil commit -m "Saving what was here"
# Push
fossil push $FOSSIL_URL
Ignore Stuff
fossil settings ignore-glob "*/*.html"
Sources
- Fossil: Tutorial
- Fossil: Fossil Quick Start Guide
- Fossil User Forum: Command equivalent to git reset? (clear all staged changes)
- dvcs - Fossil: Deleting missing files in one command? - Stack Overflow