Blog
In-depth articles on AI agents, LLM engineering, servers, Python and software development.
Git stash is used to temporarily stash uncommitted changes in the working directory and staging area, avoiding conflicts when switching branches or pulling code. It saves the modifications and restore
Git Flow is a branching strategy designed to address code management issues in collaborative environments, ensuring conflict avoidance and stable online versions by clarifying branch responsibilities.
Git is a version control system that records file modifications and supports multi-person collaboration. GitHub is a web-based repository platform built on Git, used for code storage and collaboration
Git tags are permanent markers for specific commits in a Git repository, used for version management, quick rollbacks, and team collaboration. They differ from dynamic branches (which move with develo
This article systematically introduces the basic usage of Git, covering core concepts and operation processes. Git is a version control system that can record file modifications, prevent conflicts in
Git Pull and Push are core operations for synchronizing code between the local and remote repositories. Pull is used to fetch remote updates, while Push is used to share local modifications. Pull: Th
Version control solves the problem of "breaking changes and being unable to revert" and multi - person collaboration. A Version Control System (VCS) is an "intelligent filing cabinet" that can record
When interacting with remote repositories (such as GitHub/GitLab) using Git, SSH keys enable secure and convenient connections through public-key cryptography, eliminating the need to repeatedly enter
Have you ever encountered vague Git commit messages like "modified" or "fixed a bug", making it difficult to review the details of changes? Clear commit messages can solve this problem. They serve as
Git branches are a core tool for code management, with the main branch (main/master) and feature branches being the two most critical types. The main branch is the "cornerstone" of the project, storin