Since we’ve completed our work, we’re ready to move from staging to committing our changes.
Commits help track our progress and changes over time, serving as checkpoints or “save points” in the project. They allow you to return to a specific state if you encounter a bug or need to make adjustments.
When making a commit, always include a message.
Clear commit messages make it easier for you and others to understand what changes were made and when.
[user@localhost] $ |
git commit -m "First release of Hello World!" |
The commit command finalizes the commit, and the -m “message” option adds a descriptive message.
The staging environment has been committed to our repository with the message:
“First release of Hello World!”
Sometimes, for minor changes, using the staging environment can feel like an extra step. You can skip staging by committing changes directly using the -a option, which automatically stages all modified, already tracked files.
Let’s make a small update to index.html:
<!DOCTYPE html> <html> <head> <title>Hello World!</title> <link rel=”stylesheet” href=”bluestyle.css”> </head> <body> <h1>Hello world!</h1> <p>This is the first file in my new Git Repo.</p> <p>A new line in our file!</p> </body> </html> |
And check the status of our repository. This time, we’ll use the –short option to view the changes in a more concise format.
[user@localhost] $ |
git status --short |
Note: The short status flags are:
|
We see that the file we expected is modified. Let’s commit it directly.
[user@localhost] $ |
git commit -a -m “Updated index.html with a new line” |
Warning: Skipping the staging environment is generally not recommended. By bypassing the staging step, you might unintentionally include unwanted changes in your commit. |
To see the commit history for a repository, use the log command:
[user@localhost] $ |
git log Updated index.html with a new line commit 221ec6e10aeedbfd02b85264087cd9adc18e4b26 First release of Hello World! |