2015-10-22 09:31:52 +02:00
|
|
|
# git commit
|
2014-03-09 13:20:13 +01:00
|
|
|
|
2017-12-13 13:22:58 +01:00
|
|
|
> Commit files to the repository.
|
2019-06-03 02:06:36 +02:00
|
|
|
> More information: <https://git-scm.com/docs/git-commit>.
|
2014-03-09 13:20:13 +01:00
|
|
|
|
2017-12-15 05:07:29 +01:00
|
|
|
- Commit staged files to the repository with a message:
|
2014-03-09 13:20:13 +01:00
|
|
|
|
2016-09-21 17:35:46 +02:00
|
|
|
`git commit -m {{message}}`
|
2014-03-09 13:20:13 +01:00
|
|
|
|
2017-12-15 05:07:29 +01:00
|
|
|
- Auto stage all modified files and commit with a message:
|
2017-12-13 13:22:58 +01:00
|
|
|
|
|
|
|
`git commit -a -m {{message}}`
|
2018-08-27 11:29:23 +02:00
|
|
|
|
|
|
|
- Replace the last commit with currently staged changes:
|
|
|
|
|
|
|
|
`git commit --amend`
|