Skip to content

Instantly share code, notes, and snippets.

View amimaro's full-sized avatar

Amir Zahlan amimaro

View GitHub Profile
@amimaro
amimaro / git-reset-author.sh
Created May 17, 2021 10:54 — forked from bgromov/git-reset-author.sh
Git: reset author for ALL commits
#!/bin/sh
# Credits: http://stackoverflow.com/a/750191
git filter-branch -f --env-filter "
GIT_AUTHOR_NAME='Newname'
GIT_AUTHOR_EMAIL='new@email'
GIT_COMMITTER_NAME='Newname'
GIT_COMMITTER_EMAIL='new@email'
" HEAD
@amimaro
amimaro / README-Template.md
Created January 3, 2018 11:56 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites