Blog
In-depth articles on AI agents, LLM engineering, servers, Python and software development.
Git stash is used to temporarily save uncommitted work progress, solving code management issues when switching branches or handling other tasks. Common scenarios include when an urgent repair for an o
In daily development, standardized Git commit messages are crucial for team collaboration and issue tracking, as non-standardized messages can lead to version history chaos. The current mainstream spe
Git is a distributed version control system (VCS) used to record file modification history, enabling team collaboration and personal history (retrospection). Its core advantages include version rollba
Git, besides `.gitignore`, offers multiple ways to ignore files for different scenarios. `.git/info/exclude` is only for the local repository and its rules are not shared; directly add ignore rules he
Git repository backup is crucial for ensuring code security, as it encompasses code, historical records, and branch information. Local corruption, accidental deletion by remote users, or platform fail
This article introduces the importance and usage of Git logs. Viewing Git logs allows you to understand commit records (who, when, and what was modified), project iteration trajectories, and also help
Git workflow serves as the "traffic rules" for team collaboration, stipulating code submission, merging, and version management rules to ensure orderly collaboration. A simplified Git Flow strategy is
In Git, "Reset" is used to undo or modify commit history by adjusting branch pointers and the state of the working directory/staging area. Beginners often make mistakes due to confusion about the diff
In a Git project with multi - person collaboration, syncing remote branches is to ensure that the local code is in line with the latest progress of the remote repository and avoid conflicts or missing
The `git diff` command in Git is used to view code changes between versions, a fundamental and practical tool. It can compare differences between the working directory and the staging area, the stagin