Skip to content

Latest commit

 

History

History
74 lines (61 loc) · 4.83 KB

git-commit.md

File metadata and controls

74 lines (61 loc) · 4.83 KB

Bookmarks tagged [git-commit]

https://brayanarrieta.hashnode.dev/how-to-change-the-git-commit-author

git


https://www.atlassian.com/git/articles/git-team-workflows-merge-or-rebase

The question is simple: In a software team using git and feature branching, what's the best way to incorporate finished work back to your main line of development? It's one of those recurring debates ...


https://www.metaltoad.com/blog/beginners-guide-git-bisect-process-elimination

Using git bisect is like a little wizard that walks you through recent commits, asks you if they are good or bad, and narrows down the broken commit. In this blog post, I encourage you to create a ...


https://blog.thoughtram.io/git/2014/11/18/the-anatomy-of-a-git-commit.html

Ever wondered what a Git commit looks like internally? Why it has those long revision identifiers? If they are unique or not? We are going to look at exactly that!


https://github.com/typicode/husky

Husky can prevent bad git commit, git push and more 🐶 woof!


https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html

I want to take a moment to elaborate on what makes a well formed commit message. I think the best practices for commit message formatting is one of the little details that makes Git great. Understanda...


https://365git.tumblr.com/post/3308646748/writing-git-commit-messages

Unsurprisingly, there is a convention for writing Git commit messages. This comes from the submitting patches guidelines for Git itself. In summary:

  • The first line of the commit message should be a...
  • tags: git, git-commit

https://github.com/angular/angular/blob/master/CONTRIBUTING.md#commit

We have very precise rules over how our git commit messages can be formatted. This leads to more readable messages that are easy to follow when looking through the project history. But also, we use th...


https://github.com/conventional-changelog/conventional-changelog

Generate changelogs and release notes from a project's commit messages and metadata.


https://chris.beams.io/posts/git-commit/

The contributors to these repositories know that a well-crafted Git commit message is the best way to communicate context about a change to fellow developers (and indeed to their future selves).

Th...