Topic archive
DevOps
Practical DevOps tutorials for Git, Docker, Podman, deployment workflows, containers, and reliable development operations.
9 articles
Start here

Git Rename Branch: Rename Local and Remote Branches
Rename a Git branch locally with git branch -m, push the renamed branch, set its upstream, and safely remove the old branch from the remote.
Read articleAll DevOps articles
Essential Podman Commands: Containers, Images, and Pods
Discover essential Podman snippets for efficient container and pod management. Learn practical commands to create, run, stop, and remove containers and pods with ease.
Read moreTop 10 Docker Commands: A Beginner's Guide
Learn the fundamental Docker commands to build, manage, and deploy containerized applications. This comprehensive guide covers everything from basic operations to advanced techniques.
Read moreGit Branch: Core Concepts and Practical Code Guide
Learn Git branches with clear code examples. Understand core concepts, see practical commands for create, switch, merge, and avoid common mistakes.
Read moreConfiguring User Information in Git: A Developer's Guide
A comprehensive guide for developers on configuring user information in Git, including global and repository-specific settings, and understanding the importance of user identity in version control and collaboration.
Read moreDelete a Git Branch Locally and Remotely
Learn how to delete a Git branch locally and remotely with this step-by-step guide. Includes tips for troubleshooting common issues like cannot delete branch checked out at.
Read moregit fetch vs git pull: Differences, Examples, and Safety
git fetch downloads remote history without changing your branch; git pull fetches and integrates it. Compare behavior, commands, rebase, and safe workflows.
Read moreGit Reset vs. Git Revert: A Comprehensive Guide for DevOps
Explore the key differences between git reset and git revert with clear explanations and practical code examples. Learn when to use each command for safe and effective Git version control.
Read moreHow to Undo the Last Git Commit (Local or Pushed)
Undo the last Git commit safely: keep local changes with reset, discard an unpushed commit, or revert a commit already pushed to a shared branch.
Read more