Skip to content

Instantly share code, notes, and snippets.

View superRaptor911's full-sized avatar
๐Ÿ’€
Happy

Aditya Aravind superRaptor911

๐Ÿ’€
Happy
View GitHub Profile
@PurpleBooth
PurpleBooth / README-Template.md
Last active July 20, 2025 07:52
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

@stephenhardy
stephenhardy / git-clearHistory
Created April 26, 2013 22:14
Steps to clear out the history of a git/github repository
-- Remove the history from
rm -rf .git
-- recreate the repos from the current content only
git init
git add .
git commit -m "Initial commit"
-- push to the github remote repos ensuring you overwrite history
git remote add origin [email protected]:<YOUR ACCOUNT>/<YOUR REPOS>.git