1
0
Fork 0
mirror of https://codeberg.org/Mo8it/How_To_Linux.git synced 2024-10-18 14:12:38 +00:00

git commit, edit1

This commit is contained in:
Juan 2023-08-17 11:07:59 +02:00
parent dbf888fc6a
commit 6c863ee65e

View file

@ -29,11 +29,14 @@ git add --all
if you want to stage all changes. if you want to stage all changes.
## git commit ## 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.
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`: Usage of `git commit`:
git commit -m "Your commit message here" ```bash
git commit -m "Your commit message here"
```
## git log ## git log