Skip to content

Instantly share code, notes, and snippets.

View ipang-dwi's full-sized avatar
😌
Alhamdulillah, banyak yg doain baby Mishary jadi Hafidz.. BarokAllah..

Ipang Dwi ipang-dwi

😌
Alhamdulillah, banyak yg doain baby Mishary jadi Hafidz.. BarokAllah..
View GitHub Profile
@ipang-dwi
ipang-dwi / README.md
Created July 2, 2020 08:48 — forked from hasanbayatme/README.md
Easy to use Bash Script to Install LAMP stack on Ubuntu.

Installation

Automatic

Run the below command in terminal:

wget --no-cache -O - https://gist.github.com/EmpireWorld/737fbb9f403d4dd66dee1364d866ba7e/raw/install-lamp.sh | bash
@ipang-dwi
ipang-dwi / repo-reset.md
Created June 23, 2020 14:18 — forked from heiswayi/repo-reset.md
GitHub - Delete commits history with git commands

First Method

Deleting the .git folder may cause problems in our git repository. If we want to delete all of our commits history, but keep the code in its current state, try this:

# Check out to a temporary branch:
git checkout --orphan TEMP_BRANCH

# Add all the files:
git add -A