Skip to content

Instantly share code, notes, and snippets.

View dougsland's full-sized avatar
:octocat:
#opensource #upstream

Douglas Landgraf dougsland

:octocat:
#opensource #upstream
View GitHub Profile
@dougsland
dougsland / license-badges.md
Created May 7, 2021 14:47 — forked from lukas-h/license-badges.md
Markdown License Badges for your Project

Markdown License badges

Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.

Notes

  • The badges do not fully replace the license informations for your projects, they are only emblems for the README, that the user can see the License at first glance.  

Translations: (No guarantee that the translations are up-to-date)

### Keybase proof
I hereby claim:
* I am dougsland on github.
* I am dougsland (https://keybase.io/dougsland) on keybase.
* I have a public key whose fingerprint is A13D 1ABC 798F 0660 4D28 C77B AD27 5D27 3278 1901
To claim this, I am signing this object:
@dougsland
dougsland / git-change-commit-messages.md
Created March 20, 2018 04:18 — forked from nepsilon/git-change-commit-messages.md
How to change your commit messages in Git? — First published in fullweb.io issue #55

How to change your commit messages in Git?

At some point you’ll find yourself in a situation where you need edit a commit message. That commit might already be pushed or not, be the most recent or burried below 10 other commits, but fear not, git has your back 🙂.

Not pushed + most recent commit:

git commit --amend

This will open your $EDITOR and let you change the message. Continue with your usual git push origin master.