Dr. Gosdrgos.com·Nov 24, 2023Implementing Git Hook-Style functionality in Your TerminalIntroduction The power of the terminal lies in its flexibility and the ability to customize it to fit our unique workflows. Drawing inspiration from Git hooks, a powerful feature in Git that triggers custom scripts at certain points in its execution ...Discuss·39 readsGit
Aakash Patelitsaakashpatel.hashnode.dev·Nov 6, 2023Git Hooks and Prettier: Your Code's Best FriendsWhen you are working in a team, you need to maintain the quality of the code. It should be easy to read and formatting should be neat and clean. Right? It holds significant practical value and it's essential because of readability, consistency, smoot...Discuss·1 likeGitHub
Kristof RiebbelsProdotnet.kriebbels.me·Feb 12, 2023Branching EtiquettePreviously on In one of my previous posts, I talked about my assignment. In summary, that assignment consists of making some REST API protected with an Oauth2 access token. During that assignment, the DevOps team rolled out a new way of deployment us...Discuss·100 readsDevOpsGit
Shubham Kshetreshubhamkshetre.hashnode.dev·Dec 11, 2022Create Your First Git hookProtect your Git repository from mistakes, automate manual processes, gather data about Git activity, and much more with Git hooks. There are two groups of these hooks: client-side and server-side. Client-side hooks are triggered by operations such a...Discuss·70 readsGit
5 Mins Learn5minslearn.hashnode.dev·Dec 5, 2022How to automate your work using Git’s add-on scripts?Git Hooks Brief Do you know you can automate a part of the work that you do every time during your development? This includes running lint, test cases, etc. before committing and pushing the code. Git provides an excellent option to achieve this. Tha...DiscussGit
Raul NaupariProblog.raulnq.com·Nov 14, 2022Husky.Net: Git hooks made easyDuring our day-to-day, usually, there are repetitive tasks we always do: formatting code, running unit tests, following commit policies, etc. Easy tasks, but we make them over and over again, which is a waste of time and effort. Luckily there is a wa...Discuss·34 likes·282 reads.NET
Murtuzaali SurtiforReactPlay Blogreactplay.hashnode.dev·Oct 23, 2022Creating Git Hooks Using HuskyHooks in git are nothing but some code that can be executed at specific points during the git execution process. They are used to verify everything is as expected before or after executing a git command or action. Some common applications include for...Discuss·3 likes·121 readsgit-hooks