Git reset

How do you commit something?

you can use

git add * (adds files to the staging area)

after that you can

git commit -m "some comment"
3 Likes

Im stuck on instruction 5 for this step! HELP?

1 Like

git commit -m “comment” so that it permanently stores changes from the staging area inside the repository.

1 Like