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

Git commit

This commit is contained in:
Juan 2023-08-16 17:23:03 +02:00
parent de54e05321
commit dbf888fc6a

View file

@ -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