Can Copia automatically commit/push my code changes?
Copia doesn't automatically commit or push anything from the desktop app
The Copia desktop app does not automatically commit to your repository if you've made changes to files in the repo. There are a number of reasons why automated commits are not ideal for a Git-based source control product:
- You'd lose meaningful commit messages
- Progress becomes harder to track if code changes are split across many commits
- Incomplete or broken code can get committed into the repo
- Merge conflicts will become more common