Best of Git — February 2025
- 1
- 2
- 3
RUBYLAND·1y
How I use git add --patch for reviewing my work
Git add --patch allows interactive review and selective staging of changes, helping maintain atomic commits. The feature offers various staging strategies, providing control over the granularity of changes added to the staging area. This versatility is useful for maintaining workflow and organizing commits meaningfully.
- 4
- 5
- 6
Open Source·1y
Good Commit vs Bad Commit
The importance of writing good commit messages is emphasized for developers. Good commit messages help organize commit history, inform team members about changes, and specify the details of features or bug fixes. Improving your commit messages can make your development process more efficient and your project history easier to read.
- 7
habr·1y
How to Sync Obsidian Notes Across Devices for Free Using GitHub
Learn how to sync your Obsidian notes across multiple devices for free using GitHub and Git. This guide provides a step-by-step process, including creating a GitHub repository, installing Git, setting up SSH authentication, and configuring the Git plugin in Obsidian. Follow these simple instructions to ensure your notes are always up to date on both your computer and mobile devices.
- 8
- 9
DEV·1y
15 Git Command-Line Tricks Every Developer Should Know
Git is a crucial tool for developers for version control and collaboration. This post covers 15 essential Git command-line tricks to enhance productivity, including stashing changes, interactive rebase, cherry-picking commits, viewing commit history, and creating alias shortcuts. These tricks facilitate better control and efficiency in development workflows.