Thirdy Gayaressoftware-engineer.thirdygayares.com·Sep 22, 2024Standard naming convention for commit messagesThe standard naming convention for commit messages often follows the Conventional Commits specification. It helps to keep commit messages consistent and readable, especially when generating changelogs or tracking changes in a project. Here are the co...Discuss·1 like·170 readsGit
Sunil Kumarshunnu.hashnode.dev·Sep 10, 2024Understanding Conventional Commit Messages: A Simple GuideWhat are conventional commits? Conventional commits is a lightweight convention for writing commit messages that follows a specific structure. This structure makes it easier for humans and machines to understand the intent of each commit. It’s especi...DiscussGitHub
Ayush Soniayushsoni1010.hashnode.dev·Jul 21, 2024Git Together: Pro Tips for Commits and BranchesHey everyone, In today's blog, I want to share some best practices for using Git more effectively. You know Git, right? Yes, the Git that you’re already familiar with and that amazing tool that makes our coding journey smooth. Git is like your trusty...Discuss·1 like·45 readsGit
Siddhartha Dblog.siddharthad.com·Jun 15, 2024Boost Your Code Commits: From Confusion to ClaritySoftware engineering is not just about writing code and fixing bugs (or dealing with PMs!). Have you ever wondered how modern app development happens? It's not built in a day nor by one person. It's a team effort, often involving collaboration with a...Discusscode
Faisal Rahmanfaisalism.hashnode.dev·May 19, 2024Steps to Undo Unwanted Git CommitsHave you ever made a commit in your repository and suddenly realized, "Oh no! This should not be committed." and then felt overwhelmed by the responses on the web? Here are the basic steps that can come to your rescue. Here, I have created a basic in...Discuss·1 likeGitHub
Aniket Hendreblog.anikethendre.dev·May 5, 2024Semantics of good commit messageStudies observed that 14% of commit messages in over 23,000 OSS projects were completely empty, 66% of the messages contained only a few words, and only 10% of commits had messages containing “normal” descriptive English sentences. Common fallacies w...Discuss·48 readscommit messages
AKEH EUNICEladyintech.hashnode.dev·Apr 6, 2024Create An Index.Html File In Git Bash & Push It To GithubIntroduction Using platforms like GitHub and version control systems like Git is crucial for any developer or anyone hoping to collaborate on projects or display their work. Contributing HTML files to repositories is a basic part of using GitHub and ...DiscussGitHub
Devrajsinh Jhaladevraj-jhala.hashnode.dev·Mar 20, 2024Become a pro committer with husky and commitlintHello everyone, welcome to the new blog where we will be discussing about how you can upgrade your commits, your changes and your codebase to achieve proper documentation and code structure. In this blog, we will learn about husky and commitlint, and...Discussgood practices
Natasha Sharmanssharma.hashnode.dev·Mar 5, 2024The Ultimate Git Cheat Sheet for Collaboration🐱🔥From basic operations like staging and committing changes to more advanced techniques for synchronizing with remote branches, this cheat sheet will help you to contribute effectively to any Git-based project 😌. Setting Up and Cloning Cloning a repos...Discuss·2 likesDevOpsGitHub
Abdullah Bin Altafdevopswithabdullah.hashnode.dev·Feb 24, 2024Lecture # 16 - Undoing CommitsUndoing Commits: To undo commits in Git, you have several options depending on your specific needs and the state of your repository. Undo the Last Commit (without changing files): To undo the last commit but keep the changes in your working direct...Discuss·26 readsDevops