This note is a short Atomic-specific Git reference. The full general Git command reference lives in the main Git category, while this note keeps only the reminders that are most useful in the Fedora SWAY Atomic context.
Commands
Command
Purpose
which git
show where Git is coming from on the current system
git --version
show installed Git version
git config --global --list
show current Git config
git config --list --show-origin
show config values and where they come from
ssh -T git@github.com
test GitHub SSH authentication
Atomic-specific checks
Check
Why it matters
which git
helps confirm whether Git is coming from the expected layer
git --version
confirms Git works in the current environment
git config --list --show-origin
helps debug config confusion across environments
Example checks
which gitgit --versiongit config --list --show-originssh -T git@github.com
Notes
the general Git commands are documented in the main Git category
this note exists to support the Atomic workflow rather than duplicate the full Git reference
if Git behaves unexpectedly, the first useful question is often “which layer am I in right now?”