Skip to content

Instantly share code, notes, and snippets.

View mattkraemer's full-sized avatar
💭
For hire! 👍

Matthias Krämer mattkraemer

💭
For hire! 👍
View GitHub Profile
@mattkraemer
mattkraemer / gist:a9b11c8852ef3bdcc6827d1bf0189f7e
Created May 14, 2021 15:08
Solve ‘fatal: refusing to merge unrelated histories’
git pull --allow-unrelated-histories
@mattkraemer
mattkraemer / gist:f852fdfafd0966a0524fa7b428a1cdd3
Created December 7, 2020 22:08
Quickinstall Tailwind CSS with Next.js
// Install TailwindCSS, PostCSS, Autoprefixer
npm install tailwindcss postcss autoprefixer
// Generate TailwindCSS & PostCSS Config Files
npx tailwindcss init -p
// Import TailwindCSS
import "tailwindcss/tailwind.css";