Micheal AdisaforMicheal's thoughts in black and whitemichellead.hashnode.net·Aug 2, 2022Commit messages saves lifeYes, you read that right. Self explained commit messages saves time, therefore saves life. What is a commit message? A commit message literally tells what a line of code (either new or updated code) does. A commit message explains what change you ma...Discuss·5 likes·77 readsGit
KikiDotPyforKikiDotPykikidotpy.hashnode.net·Jul 5, 2022Git - Version Control SystemGit is it's a version control system (VSC), a software designed to help us manage and track different versions of our code, initially created in 2005 by Linus Torvalds who is also the creator of Linux. Git makes it possible to store a separate versio...Discuss·2 likes·87 readsGit
Balendu RawatforBalendu Rawatbalendurawat.hashnode.net·Sep 28, 2022git commitWe generally use the git commit command. Let's dig into it more... git commit will save all the staged changes, and it's with a brief message. 'commit' basically is a snapshot of the project. So generally, we use character like '-m' in the statement....Discuss·1 like·39 readsGit
MITHIN DEVforMITHIN'S CONCEPTSmithin.hashnode.net·Feb 26, 2023📝: A Guide for Writing Effective Git Commit MessagesGit is a powerful tool for version control and collaboration in software development, but it's not just about committing changes to your repository. Writing clear and informative Git commit messages is an essential part of effective collaboration wit...Discussversion control
FoyerforFoyerfoyer.hashnode.net·Jan 30, 2023The Truth Behind Software Developer Performance Metrics: Separating Fact from FictionIntroduction As software developers, we all want to know how we're performing and where we can improve. But with so many metrics out there, it can be hard to know which ones are actually useful and which ones are just noise. In this blog post, we'll ...Discuss·27 readsperformance metrics
Rishu singhforrishublog.hashnode.net·Jan 25, 2023What are some tips for writing a meaningful git commit message?Writing meaningful git commit messages is an important part of the development process. Not only do they help you and your team understand what changes were made and why, but they also serve as a reference for future troubleshooting. Here are some ti...Discuss·29 readsWeMakeDevs
Jean-Mark WrightforPerspective Unspokenjaywhy13.hashnode.net·Dec 13, 2022Can a good explanation really prevent a prod incident?A missed opportunity to communicate It was March 21, 2022. I remember the day like yesterday. I just started my On-Call Shift. Our team On-Call rotation is set up so each engineer goes on call for a week, once every 6 or so weeks. The On-Call Enginee...Discuss·921 readscommit
Balendu RawatforBalendu Rawatbalendurawat.hashnode.net·Sep 28, 2022git commitWe generally use the git commit command. Let's dig into it more... git commit will save all the staged changes, and it's with a brief message. 'commit' basically is a snapshot of the project. So generally, we use character like '-m' in the statement....Discuss·1 like·39 readsGit
Jordan HarrisonforJordan's Dev Blogjord.hashnode.net·Aug 18, 2022How to enforce Conventional Commit messages using Git hooks with husky & commitlintIn this guide I will be showing you how to enforce the use of Conventional Commit messages in Git. If you don't know what Conventional Commits are, you can read my other post here. Let's get right into it. Go ahead and open up your repo in Terminal. ...Discuss·44 readsGit
Carmine TambasciaforCarmine Tambasciaallaroundjavascript.hashnode.net·Aug 10, 2022Should you spend planning a commit before writing code?I have to be honest in the past something like 8 years ago I have spend some amount of time thinking when was the right to commit. Then as for any topic I read around and different source, and as everything this depends of the project, like a solo on...Discuss·132 readscommit
Jordan HarrisonforJordan's Dev Blogjord.hashnode.net·Aug 7, 2022An introduction to Conventional CommitsAs a student, i've always wondered if there is a standard around commit messages. I thought it would make sense for them to be standardised, and when I started my new role I learned about Conventional Commits - and it just makes sense! I see a lot of...Discuss·55 readsGit
Micheal AdisaforMicheal's thoughts in black and whitemichellead.hashnode.net·Aug 2, 2022Commit messages saves lifeYes, you read that right. Self explained commit messages saves time, therefore saves life. What is a commit message? A commit message literally tells what a line of code (either new or updated code) does. A commit message explains what change you ma...Discuss·5 likes·77 readsGit
Yacine Ayechiforyacineayechi 💻⚡️yacineayechi.hashnode.net·Jul 26, 2022How to delete all commit history in GitHub?Deleting the commit history 1. Create Orphan Branch Create a new orphan branch in git repository. The newly created branch will not show in ‘git branch’ command. git checkout --orphan temp_branch 2. Add Files to Branch Now add all files to the newly ...Discuss·44 readsGitHub