Manage configurations
More Control
The git status
command shows the changes earmarked for the etckeeper.conf
as well as the debian_version
file (Figure 5). So far these changes haven't been committed.
To commit the changes, use the command:
git commit -a -m "Description"
It is helpful to provide the commits with an intuitive description, so you can understand them later (Figure 6). Enter the files that you do not want to include with the versioning in /etc/.gitignore
. It does no harm to clean up the repository with git gc --auto
now and then. The system compresses the contents and removes unnecessary files.
Git Command
The git log
command (Figure 7) gives you an overview of previously issued commits. You will see the associated revision numbers in addition to the comments you wrote (the changelog). The comments make it easier to find, compare, or undo certain revisions.
To take a closer look at a commit, you need the first six characters of the revision ID. If they are 40f0de
, then, you can examine the exact changes by typing:
git show 40f0de
To compare two commits, try git diff
and specify the first six characters of the commits.
Undoing Mistakes
If you discover from a git status
commit that you made a mistake on a change, you can undo it using git checkout
. The git checkout
command lets you revise the entire commit or just part of it. The command
git checkout /etc/hosts
would only undo a change to the /etc/hosts
file that had not been written to Git. Conversely, if you only type git checkout
, the system will restore any changes that have not yet been written.
If a commit has already been issued before the error is discovered, you need a different approach: The git revert HEAD
command completely undoes the failed commit (Figure 8). After this command, you can no longer trace the canceled change.
« Previous 1 2 3 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Thousands of Linux Servers Infected with Stealth Malware Since 2021
Perfctl is capable of remaining undetected, which makes it dangerous and hard to mitigate.
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more Linux systems are targeted by ransomware, Halcyon is stepping up its protection.
-
Valve and Arch Linux Announce Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.
-
Hacker Successfully Runs Linux on a CPU from the Early ‘70s
From the office of "Look what I can do," Dmitry Grinberg was able to get Linux running on a processor that was created in 1971.
-
OSI and LPI Form Strategic Alliance
With a goal of strengthening Linux and open source communities, this new alliance aims to nurture the growth of more highly skilled professionals.
-
Fedora 41 Beta Available with Some Interesting Additions
If you're a Fedora fan, you'll be excited to hear the beta version of the latest release is now available for testing and includes plenty of updates.
-
AlmaLinux Unveils New Hardware Certification Process
The AlmaLinux Hardware Certification Program run by the Certification Special Interest Group (SIG) aims to ensure seamless compatibility between AlmaLinux and a wide range of hardware configurations.
-
Wind River Introduces eLxr Pro Linux Solution
eLxr Pro offers an end-to-end Linux solution backed by expert commercial support.
-
Juno Tab 3 Launches with Ubuntu 24.04
Anyone looking for a full-blown Linux tablet need look no further. Juno has released the Tab 3.
-
New KDE Slimbook Plasma Available for Preorder
Powered by an AMD Ryzen CPU, the latest KDE Slimbook laptop is powerful enough for local AI tasks.