mirror of
https://codeberg.org/Mo8it/How_To_Linux.git
synced 2024-11-21 14:48:02 +00:00
Git commit
This commit is contained in:
parent
de54e05321
commit
dbf888fc6a
1 changed files with 5 additions and 0 deletions
|
@ -29,6 +29,11 @@ git add --all
|
|||
if you want to stage all changes.
|
||||
|
||||
## git commit
|
||||
this command is used to record the changes you've made to the repository as a new commit. A commit is a snapshot of the changes you've staged (using `git add`) and is accompanied by a commit message that describes the purpose of the changes you are committing.
|
||||
|
||||
Usage of `git commit`:
|
||||
|
||||
git commit -m "Your commit message here"
|
||||
|
||||
## git log
|
||||
|
||||
|
|
Loading…
Reference in a new issue