Best of Git — July 2021
- 1
- 2
Hashnode·5y
The best VS Code extensions to supercharge Git (yes, there’s more than GitLens!)
Git Graph is the most visually appealing way to interact with Git in VS Code. Git Automator allows you to add and commit files with a shortcut. Git Urgent lets you git add all, commit and push with one command. Git Tree Compare compares your working tree against a branch, a tag or commit.
- 3
- 4
Hashnode·5y
5 Git Tips To Level Up Your Workflow
In this article, you'll find 5 extra tips that will help you bring your Git skills to the next level. No matter how experienced you are, Git will always find a way to surprise you. It is loaded with neat tricks that have the power to make your daily coding routine much smoother.
- 5
Hashnode·5y
How NOT to use Git in Practice. Ten Git usages, you should know to avoid.
Git is an open-source version control system(VCS) that helps all project contributors to keep their project artifacts in sync. Here are ten usages we should stop or avoid. If you are a beginner to Git or have any difficulties with its usages, here is an in-depth, hands-on tutorial for you.
- 6
SitePoint·5y
A Guide to Git Interactive Rebase, with Practical Examples
Interactive Rebase is one of the most powerful tools in Git. It allows you to create a clean and well-structured commit history in your projects. Interactive Rebase helps you optimize and clean up your commit history. It can be used to edit an old commit message, delete a commit or combine multiple commits.