Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 308 Bytes

commit-to-repository.mdx

File metadata and controls

23 lines (16 loc) · 308 Bytes

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"