Y
Hacker News
new
|
ask
|
show
|
jobs
by
jasonpeacock
1632 days ago
It's usually something like:
git status && git add -A git commit -m "checkpoint" --no-verify
I include `git status` so I can see what's being committed. `--no-verify` is used to skip any pre-commit hooks.
1 comments
glenjamin
1632 days ago
You can use `-v` on the add to see what it’s doing instead of the extra status
link