Commit to Repository

Gitsol wraps on top of the actual git command line tool. To create commits, you can use either of the following:

gitsol add .
gitsol commit -m "message"

or

git add .
git commit -m "message"

or

npx gitsol add .
npx gitsol commit -m "message"