-
The following blog post illustrates how to use pre-commit hooks in a git workflow.
Pre-commit is a simple method for running abitrary commands prior to a Git commit. It allows automation of checks, such as code formatting, linting, security audits, and more, ensuring code quality and consistency. Hooks are typically …
Read More -
The following blog post illustrates how to use worktree in a git workflow.
A Git worktree allows you to check out multiple branches or commits at the same time. Each worktree is a separate working directory linked to the same repository. This is useful for working on multiple features concurrently, reviewing pull …
Read More -
The following blog post covers how to rename the default branch in GitHub. If you have wondered how to do this task it is basically two discrete steps.
-
- Rename the default branch
-
- Update the local clone
Once complete the branch will be available and response as the default.
Rename Default branch
The default …
Read More -