├── .eleventy.js ├── .eleventyignore ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CODEOWNERS ├── CONTRIBUTING ├── README.md ├── _assets ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── prism.css └── prism.js ├── _data └── site.js ├── _includes ├── layouts │ └── page.njk ├── partials │ ├── carbonads.njk │ ├── collaborator-list.njk │ ├── langpicker.njk │ ├── otherhelper-list.njk │ └── styles.njk └── site.css ├── _redirects ├── af ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── bn ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── cs ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── de ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── en ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── es ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── fa ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ └── 20-fuck-this-noise.md └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ └── 20-fuck-this-noise.md ├── fi ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ └── 20-fuck-this-noise.md └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ └── 20-fuck-this-noise.md ├── fr ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── gr ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── he ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── hi ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── id ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── it ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── ja ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── kk ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── ko ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── ne ├── noswears │ ├── index.html │ ├── partials │ │ ├── banner.njk │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── netlify.toml ├── nl ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── package.json ├── pl ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── pt_BR ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── ro ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── ru ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── sr ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── sv ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── th ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── tr ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json ├── ua ├── noswears │ ├── index.html │ ├── partials │ │ ├── footer.njk │ │ ├── intro.njk │ │ ├── outro.njk │ │ └── thanks.njk │ └── tips │ │ ├── 01-magic-time-machine.md │ │ ├── 02-change-last-commit.md │ │ ├── 03-change-last-commit-message.md │ │ ├── 04-accidental-commit-master.md │ │ ├── 05-accidental-commit-wrong-branch.md │ │ ├── 06-dude-wheres-my-diff.md │ │ ├── 07-undo-a-commit.md │ │ ├── 08-undo-a-file.md │ │ ├── 20-fuck-this-noise.md │ │ └── tips.json └── swears │ ├── index.html │ ├── partials │ ├── banner.njk │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk │ └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json └── zh ├── noswears ├── index.html ├── partials │ ├── footer.njk │ ├── intro.njk │ ├── outro.njk │ └── thanks.njk └── tips │ ├── 01-magic-time-machine.md │ ├── 02-change-last-commit.md │ ├── 03-change-last-commit-message.md │ ├── 04-accidental-commit-master.md │ ├── 05-accidental-commit-wrong-branch.md │ ├── 06-dude-wheres-my-diff.md │ ├── 07-undo-a-commit.md │ ├── 08-undo-a-file.md │ ├── 20-fuck-this-noise.md │ └── tips.json └── swears ├── index.html ├── partials ├── banner.njk ├── footer.njk ├── intro.njk ├── outro.njk └── thanks.njk └── tips ├── 01-magic-time-machine.md ├── 02-change-last-commit.md ├── 03-change-last-commit-message.md ├── 04-accidental-commit-master.md ├── 05-accidental-commit-wrong-branch.md ├── 06-dude-wheres-my-diff.md ├── 07-undo-a-commit.md ├── 08-undo-a-file.md ├── 20-fuck-this-noise.md └── tips.json /.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/.eleventy.js -------------------------------------------------------------------------------- /.eleventyignore: -------------------------------------------------------------------------------- 1 | **/partials/* 2 | README.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | node_modules/ 3 | package-lock.json 4 | .idea/ -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | node_modules 3 | _site 4 | _assets 5 | *.md 6 | *.html -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/README.md -------------------------------------------------------------------------------- /_assets/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/_assets/android-chrome-192x192.png -------------------------------------------------------------------------------- /_assets/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/_assets/android-chrome-512x512.png -------------------------------------------------------------------------------- /_assets/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/_assets/apple-touch-icon.png -------------------------------------------------------------------------------- /_assets/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/_assets/favicon-16x16.png -------------------------------------------------------------------------------- /_assets/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/_assets/favicon-32x32.png -------------------------------------------------------------------------------- /_assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/_assets/favicon.ico -------------------------------------------------------------------------------- /_assets/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/_assets/prism.css -------------------------------------------------------------------------------- /_assets/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/_assets/prism.js -------------------------------------------------------------------------------- /_data/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/_data/site.js -------------------------------------------------------------------------------- /_includes/layouts/page.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/_includes/layouts/page.njk -------------------------------------------------------------------------------- /_includes/partials/carbonads.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/_includes/partials/carbonads.njk -------------------------------------------------------------------------------- /_includes/partials/collaborator-list.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/_includes/partials/collaborator-list.njk -------------------------------------------------------------------------------- /_includes/partials/langpicker.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/_includes/partials/langpicker.njk -------------------------------------------------------------------------------- /_includes/partials/otherhelper-list.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/_includes/partials/otherhelper-list.njk -------------------------------------------------------------------------------- /_includes/partials/styles.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/_includes/partials/styles.njk -------------------------------------------------------------------------------- /_includes/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/_includes/site.css -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/_redirects -------------------------------------------------------------------------------- /af/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/noswears/index.html -------------------------------------------------------------------------------- /af/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/noswears/partials/footer.njk -------------------------------------------------------------------------------- /af/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/noswears/partials/intro.njk -------------------------------------------------------------------------------- /af/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/noswears/partials/outro.njk -------------------------------------------------------------------------------- /af/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /af/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /af/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /af/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /af/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /af/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /af/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /af/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /af/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /af/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /af/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/swears/index.html -------------------------------------------------------------------------------- /af/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/swears/partials/banner.njk -------------------------------------------------------------------------------- /af/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/swears/partials/footer.njk -------------------------------------------------------------------------------- /af/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/swears/partials/intro.njk -------------------------------------------------------------------------------- /af/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/swears/partials/outro.njk -------------------------------------------------------------------------------- /af/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/swears/partials/thanks.njk -------------------------------------------------------------------------------- /af/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /af/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /af/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /af/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /af/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /af/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /af/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /af/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/af/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /af/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /bn/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/noswears/index.html -------------------------------------------------------------------------------- /bn/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/noswears/partials/footer.njk -------------------------------------------------------------------------------- /bn/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/noswears/partials/intro.njk -------------------------------------------------------------------------------- /bn/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/noswears/partials/outro.njk -------------------------------------------------------------------------------- /bn/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /bn/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /bn/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /bn/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /bn/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /bn/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /bn/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /bn/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /bn/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /bn/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /bn/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/swears/index.html -------------------------------------------------------------------------------- /bn/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/swears/partials/banner.njk -------------------------------------------------------------------------------- /bn/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/swears/partials/footer.njk -------------------------------------------------------------------------------- /bn/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/swears/partials/intro.njk -------------------------------------------------------------------------------- /bn/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/swears/partials/outro.njk -------------------------------------------------------------------------------- /bn/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/swears/partials/thanks.njk -------------------------------------------------------------------------------- /bn/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /bn/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /bn/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /bn/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /bn/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /bn/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /bn/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /bn/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/bn/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /bn/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /cs/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/noswears/index.html -------------------------------------------------------------------------------- /cs/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/noswears/partials/footer.njk -------------------------------------------------------------------------------- /cs/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/noswears/partials/intro.njk -------------------------------------------------------------------------------- /cs/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/noswears/partials/outro.njk -------------------------------------------------------------------------------- /cs/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /cs/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /cs/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /cs/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /cs/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /cs/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /cs/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /cs/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /cs/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /cs/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /cs/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/swears/index.html -------------------------------------------------------------------------------- /cs/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/swears/partials/banner.njk -------------------------------------------------------------------------------- /cs/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/swears/partials/footer.njk -------------------------------------------------------------------------------- /cs/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/swears/partials/intro.njk -------------------------------------------------------------------------------- /cs/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/swears/partials/outro.njk -------------------------------------------------------------------------------- /cs/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/swears/partials/thanks.njk -------------------------------------------------------------------------------- /cs/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /cs/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /cs/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /cs/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /cs/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /cs/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /cs/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /cs/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/cs/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /cs/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /de/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/noswears/index.html -------------------------------------------------------------------------------- /de/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/noswears/partials/footer.njk -------------------------------------------------------------------------------- /de/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/noswears/partials/intro.njk -------------------------------------------------------------------------------- /de/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/noswears/partials/outro.njk -------------------------------------------------------------------------------- /de/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /de/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /de/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /de/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /de/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /de/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /de/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /de/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /de/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /de/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /de/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/swears/index.html -------------------------------------------------------------------------------- /de/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/swears/partials/banner.njk -------------------------------------------------------------------------------- /de/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/swears/partials/footer.njk -------------------------------------------------------------------------------- /de/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/swears/partials/intro.njk -------------------------------------------------------------------------------- /de/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/swears/partials/outro.njk -------------------------------------------------------------------------------- /de/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/swears/partials/thanks.njk -------------------------------------------------------------------------------- /de/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /de/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /de/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /de/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /de/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /de/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /de/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /de/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/de/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /de/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /en/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/noswears/index.html -------------------------------------------------------------------------------- /en/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/noswears/partials/footer.njk -------------------------------------------------------------------------------- /en/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/noswears/partials/intro.njk -------------------------------------------------------------------------------- /en/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/noswears/partials/outro.njk -------------------------------------------------------------------------------- /en/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /en/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /en/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /en/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /en/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /en/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /en/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /en/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /en/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /en/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /en/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/swears/index.html -------------------------------------------------------------------------------- /en/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/swears/partials/banner.njk -------------------------------------------------------------------------------- /en/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/swears/partials/footer.njk -------------------------------------------------------------------------------- /en/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/swears/partials/intro.njk -------------------------------------------------------------------------------- /en/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/swears/partials/outro.njk -------------------------------------------------------------------------------- /en/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/swears/partials/thanks.njk -------------------------------------------------------------------------------- /en/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /en/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /en/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /en/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /en/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /en/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /en/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /en/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/en/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /en/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /es/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/noswears/index.html -------------------------------------------------------------------------------- /es/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/noswears/partials/footer.njk -------------------------------------------------------------------------------- /es/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/noswears/partials/intro.njk -------------------------------------------------------------------------------- /es/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/noswears/partials/outro.njk -------------------------------------------------------------------------------- /es/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /es/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /es/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /es/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /es/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /es/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /es/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /es/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /es/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /es/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /es/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/swears/index.html -------------------------------------------------------------------------------- /es/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/swears/partials/banner.njk -------------------------------------------------------------------------------- /es/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/swears/partials/footer.njk -------------------------------------------------------------------------------- /es/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/swears/partials/intro.njk -------------------------------------------------------------------------------- /es/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/swears/partials/outro.njk -------------------------------------------------------------------------------- /es/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/swears/partials/thanks.njk -------------------------------------------------------------------------------- /es/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /es/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /es/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /es/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /es/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /es/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /es/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /es/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/es/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /es/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /fa/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/noswears/index.html -------------------------------------------------------------------------------- /fa/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/noswears/partials/footer.njk -------------------------------------------------------------------------------- /fa/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/noswears/partials/intro.njk -------------------------------------------------------------------------------- /fa/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/noswears/partials/outro.njk -------------------------------------------------------------------------------- /fa/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /fa/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /fa/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /fa/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /fa/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /fa/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /fa/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /fa/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /fa/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /fa/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/swears/index.html -------------------------------------------------------------------------------- /fa/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/swears/partials/banner.njk -------------------------------------------------------------------------------- /fa/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/swears/partials/footer.njk -------------------------------------------------------------------------------- /fa/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/swears/partials/intro.njk -------------------------------------------------------------------------------- /fa/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/swears/partials/outro.njk -------------------------------------------------------------------------------- /fa/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/swears/partials/thanks.njk -------------------------------------------------------------------------------- /fa/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /fa/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /fa/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /fa/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /fa/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /fa/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /fa/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /fa/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fa/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /fi/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/noswears/index.html -------------------------------------------------------------------------------- /fi/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/noswears/partials/footer.njk -------------------------------------------------------------------------------- /fi/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/noswears/partials/intro.njk -------------------------------------------------------------------------------- /fi/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/noswears/partials/outro.njk -------------------------------------------------------------------------------- /fi/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /fi/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /fi/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /fi/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /fi/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /fi/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /fi/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /fi/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /fi/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /fi/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/swears/index.html -------------------------------------------------------------------------------- /fi/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/swears/partials/banner.njk -------------------------------------------------------------------------------- /fi/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/swears/partials/footer.njk -------------------------------------------------------------------------------- /fi/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/swears/partials/intro.njk -------------------------------------------------------------------------------- /fi/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/swears/partials/outro.njk -------------------------------------------------------------------------------- /fi/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/swears/partials/thanks.njk -------------------------------------------------------------------------------- /fi/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /fi/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /fi/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /fi/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /fi/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /fi/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /fi/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /fi/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fi/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /fr/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/noswears/index.html -------------------------------------------------------------------------------- /fr/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/noswears/partials/footer.njk -------------------------------------------------------------------------------- /fr/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/noswears/partials/intro.njk -------------------------------------------------------------------------------- /fr/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/noswears/partials/outro.njk -------------------------------------------------------------------------------- /fr/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /fr/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /fr/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /fr/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /fr/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /fr/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /fr/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /fr/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /fr/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /fr/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /fr/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/swears/index.html -------------------------------------------------------------------------------- /fr/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/swears/partials/banner.njk -------------------------------------------------------------------------------- /fr/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/swears/partials/footer.njk -------------------------------------------------------------------------------- /fr/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/swears/partials/intro.njk -------------------------------------------------------------------------------- /fr/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/swears/partials/outro.njk -------------------------------------------------------------------------------- /fr/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/swears/partials/thanks.njk -------------------------------------------------------------------------------- /fr/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /fr/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /fr/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /fr/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /fr/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /fr/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /fr/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /fr/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/fr/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /fr/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /gr/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/noswears/index.html -------------------------------------------------------------------------------- /gr/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/noswears/partials/footer.njk -------------------------------------------------------------------------------- /gr/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/noswears/partials/intro.njk -------------------------------------------------------------------------------- /gr/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/noswears/partials/outro.njk -------------------------------------------------------------------------------- /gr/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /gr/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /gr/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /gr/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /gr/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /gr/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /gr/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /gr/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /gr/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /gr/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /gr/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/swears/index.html -------------------------------------------------------------------------------- /gr/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/swears/partials/banner.njk -------------------------------------------------------------------------------- /gr/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/swears/partials/footer.njk -------------------------------------------------------------------------------- /gr/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/swears/partials/intro.njk -------------------------------------------------------------------------------- /gr/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/swears/partials/outro.njk -------------------------------------------------------------------------------- /gr/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/swears/partials/thanks.njk -------------------------------------------------------------------------------- /gr/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /gr/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /gr/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /gr/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /gr/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /gr/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /gr/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /gr/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/gr/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /gr/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /he/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/noswears/index.html -------------------------------------------------------------------------------- /he/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/noswears/partials/footer.njk -------------------------------------------------------------------------------- /he/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/noswears/partials/intro.njk -------------------------------------------------------------------------------- /he/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/noswears/partials/outro.njk -------------------------------------------------------------------------------- /he/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /he/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /he/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /he/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /he/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /he/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /he/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /he/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /he/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /he/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /he/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/swears/index.html -------------------------------------------------------------------------------- /he/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/swears/partials/banner.njk -------------------------------------------------------------------------------- /he/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/swears/partials/footer.njk -------------------------------------------------------------------------------- /he/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/swears/partials/intro.njk -------------------------------------------------------------------------------- /he/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/swears/partials/outro.njk -------------------------------------------------------------------------------- /he/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/swears/partials/thanks.njk -------------------------------------------------------------------------------- /he/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /he/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /he/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /he/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /he/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /he/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /he/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /he/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/he/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /he/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /hi/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/noswears/index.html -------------------------------------------------------------------------------- /hi/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/noswears/partials/footer.njk -------------------------------------------------------------------------------- /hi/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/noswears/partials/intro.njk -------------------------------------------------------------------------------- /hi/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/noswears/partials/outro.njk -------------------------------------------------------------------------------- /hi/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /hi/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /hi/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /hi/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /hi/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /hi/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /hi/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /hi/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /hi/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /hi/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /hi/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/swears/index.html -------------------------------------------------------------------------------- /hi/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/swears/partials/banner.njk -------------------------------------------------------------------------------- /hi/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/swears/partials/footer.njk -------------------------------------------------------------------------------- /hi/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/swears/partials/intro.njk -------------------------------------------------------------------------------- /hi/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/swears/partials/outro.njk -------------------------------------------------------------------------------- /hi/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/swears/partials/thanks.njk -------------------------------------------------------------------------------- /hi/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /hi/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /hi/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /hi/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /hi/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /hi/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /hi/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /hi/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/hi/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /hi/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /id/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/noswears/index.html -------------------------------------------------------------------------------- /id/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/noswears/partials/footer.njk -------------------------------------------------------------------------------- /id/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/noswears/partials/intro.njk -------------------------------------------------------------------------------- /id/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/noswears/partials/outro.njk -------------------------------------------------------------------------------- /id/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /id/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /id/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /id/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /id/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /id/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /id/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /id/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /id/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /id/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /id/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/swears/index.html -------------------------------------------------------------------------------- /id/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/swears/partials/banner.njk -------------------------------------------------------------------------------- /id/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/swears/partials/footer.njk -------------------------------------------------------------------------------- /id/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/swears/partials/intro.njk -------------------------------------------------------------------------------- /id/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/swears/partials/outro.njk -------------------------------------------------------------------------------- /id/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/swears/partials/thanks.njk -------------------------------------------------------------------------------- /id/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /id/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /id/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /id/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /id/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /id/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /id/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /id/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/id/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /id/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /it/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/noswears/index.html -------------------------------------------------------------------------------- /it/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/noswears/partials/footer.njk -------------------------------------------------------------------------------- /it/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/noswears/partials/intro.njk -------------------------------------------------------------------------------- /it/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/noswears/partials/outro.njk -------------------------------------------------------------------------------- /it/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /it/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /it/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /it/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /it/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /it/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /it/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /it/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /it/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /it/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /it/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/swears/index.html -------------------------------------------------------------------------------- /it/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/swears/partials/banner.njk -------------------------------------------------------------------------------- /it/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/swears/partials/footer.njk -------------------------------------------------------------------------------- /it/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/swears/partials/intro.njk -------------------------------------------------------------------------------- /it/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/swears/partials/outro.njk -------------------------------------------------------------------------------- /it/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/swears/partials/thanks.njk -------------------------------------------------------------------------------- /it/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /it/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /it/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /it/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /it/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /it/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /it/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /it/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/it/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /it/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /ja/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/noswears/index.html -------------------------------------------------------------------------------- /ja/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/noswears/partials/footer.njk -------------------------------------------------------------------------------- /ja/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/noswears/partials/intro.njk -------------------------------------------------------------------------------- /ja/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/noswears/partials/outro.njk -------------------------------------------------------------------------------- /ja/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /ja/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /ja/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /ja/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /ja/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /ja/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /ja/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /ja/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /ja/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /ja/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /ja/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/swears/index.html -------------------------------------------------------------------------------- /ja/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/swears/partials/banner.njk -------------------------------------------------------------------------------- /ja/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/swears/partials/footer.njk -------------------------------------------------------------------------------- /ja/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/swears/partials/intro.njk -------------------------------------------------------------------------------- /ja/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/swears/partials/outro.njk -------------------------------------------------------------------------------- /ja/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/swears/partials/thanks.njk -------------------------------------------------------------------------------- /ja/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /ja/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /ja/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /ja/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /ja/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /ja/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /ja/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /ja/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ja/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /ja/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /kk/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/noswears/index.html -------------------------------------------------------------------------------- /kk/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/noswears/partials/footer.njk -------------------------------------------------------------------------------- /kk/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/noswears/partials/intro.njk -------------------------------------------------------------------------------- /kk/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/noswears/partials/outro.njk -------------------------------------------------------------------------------- /kk/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /kk/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /kk/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /kk/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /kk/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /kk/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /kk/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /kk/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /kk/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /kk/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /kk/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/swears/index.html -------------------------------------------------------------------------------- /kk/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/swears/partials/banner.njk -------------------------------------------------------------------------------- /kk/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/swears/partials/footer.njk -------------------------------------------------------------------------------- /kk/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/swears/partials/intro.njk -------------------------------------------------------------------------------- /kk/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/swears/partials/outro.njk -------------------------------------------------------------------------------- /kk/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/swears/partials/thanks.njk -------------------------------------------------------------------------------- /kk/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /kk/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /kk/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /kk/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /kk/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /kk/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /kk/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /kk/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/kk/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /kk/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /ko/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/noswears/index.html -------------------------------------------------------------------------------- /ko/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/noswears/partials/footer.njk -------------------------------------------------------------------------------- /ko/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/noswears/partials/intro.njk -------------------------------------------------------------------------------- /ko/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/noswears/partials/outro.njk -------------------------------------------------------------------------------- /ko/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /ko/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /ko/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /ko/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /ko/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /ko/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /ko/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /ko/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /ko/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /ko/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /ko/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/swears/index.html -------------------------------------------------------------------------------- /ko/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/swears/partials/banner.njk -------------------------------------------------------------------------------- /ko/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/swears/partials/footer.njk -------------------------------------------------------------------------------- /ko/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/swears/partials/intro.njk -------------------------------------------------------------------------------- /ko/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/swears/partials/outro.njk -------------------------------------------------------------------------------- /ko/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/swears/partials/thanks.njk -------------------------------------------------------------------------------- /ko/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /ko/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /ko/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /ko/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /ko/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /ko/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /ko/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /ko/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ko/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /ko/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /ne/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/noswears/index.html -------------------------------------------------------------------------------- /ne/noswears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/noswears/partials/banner.njk -------------------------------------------------------------------------------- /ne/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/noswears/partials/footer.njk -------------------------------------------------------------------------------- /ne/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/noswears/partials/intro.njk -------------------------------------------------------------------------------- /ne/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/noswears/partials/outro.njk -------------------------------------------------------------------------------- /ne/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /ne/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /ne/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /ne/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /ne/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /ne/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /ne/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /ne/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /ne/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /ne/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /ne/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/swears/index.html -------------------------------------------------------------------------------- /ne/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/swears/partials/banner.njk -------------------------------------------------------------------------------- /ne/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/swears/partials/footer.njk -------------------------------------------------------------------------------- /ne/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/swears/partials/intro.njk -------------------------------------------------------------------------------- /ne/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/swears/partials/outro.njk -------------------------------------------------------------------------------- /ne/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/swears/partials/thanks.njk -------------------------------------------------------------------------------- /ne/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /ne/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /ne/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /ne/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /ne/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /ne/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /ne/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /ne/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ne/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /ne/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/netlify.toml -------------------------------------------------------------------------------- /nl/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/noswears/index.html -------------------------------------------------------------------------------- /nl/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/noswears/partials/footer.njk -------------------------------------------------------------------------------- /nl/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/noswears/partials/intro.njk -------------------------------------------------------------------------------- /nl/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/noswears/partials/outro.njk -------------------------------------------------------------------------------- /nl/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /nl/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /nl/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /nl/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /nl/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /nl/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /nl/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /nl/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /nl/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /nl/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /nl/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/swears/index.html -------------------------------------------------------------------------------- /nl/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/swears/partials/banner.njk -------------------------------------------------------------------------------- /nl/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/swears/partials/footer.njk -------------------------------------------------------------------------------- /nl/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/swears/partials/intro.njk -------------------------------------------------------------------------------- /nl/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/swears/partials/outro.njk -------------------------------------------------------------------------------- /nl/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/swears/partials/thanks.njk -------------------------------------------------------------------------------- /nl/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /nl/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /nl/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /nl/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /nl/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /nl/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /nl/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /nl/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/nl/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /nl/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/package.json -------------------------------------------------------------------------------- /pl/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/noswears/index.html -------------------------------------------------------------------------------- /pl/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/noswears/partials/footer.njk -------------------------------------------------------------------------------- /pl/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/noswears/partials/intro.njk -------------------------------------------------------------------------------- /pl/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/noswears/partials/outro.njk -------------------------------------------------------------------------------- /pl/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /pl/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /pl/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /pl/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /pl/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /pl/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /pl/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /pl/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /pl/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /pl/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /pl/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/swears/index.html -------------------------------------------------------------------------------- /pl/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/swears/partials/banner.njk -------------------------------------------------------------------------------- /pl/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/swears/partials/footer.njk -------------------------------------------------------------------------------- /pl/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/swears/partials/intro.njk -------------------------------------------------------------------------------- /pl/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/swears/partials/outro.njk -------------------------------------------------------------------------------- /pl/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/swears/partials/thanks.njk -------------------------------------------------------------------------------- /pl/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /pl/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /pl/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /pl/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /pl/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /pl/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /pl/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /pl/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pl/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /pl/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /pt_BR/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/noswears/index.html -------------------------------------------------------------------------------- /pt_BR/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/noswears/partials/footer.njk -------------------------------------------------------------------------------- /pt_BR/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/noswears/partials/intro.njk -------------------------------------------------------------------------------- /pt_BR/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/noswears/partials/outro.njk -------------------------------------------------------------------------------- /pt_BR/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /pt_BR/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /pt_BR/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /pt_BR/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /pt_BR/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /pt_BR/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /pt_BR/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /pt_BR/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /pt_BR/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /pt_BR/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/swears/index.html -------------------------------------------------------------------------------- /pt_BR/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/swears/partials/banner.njk -------------------------------------------------------------------------------- /pt_BR/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/swears/partials/footer.njk -------------------------------------------------------------------------------- /pt_BR/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/swears/partials/intro.njk -------------------------------------------------------------------------------- /pt_BR/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/swears/partials/outro.njk -------------------------------------------------------------------------------- /pt_BR/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/swears/partials/thanks.njk -------------------------------------------------------------------------------- /pt_BR/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /pt_BR/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /pt_BR/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /pt_BR/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /pt_BR/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /pt_BR/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /pt_BR/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /pt_BR/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/pt_BR/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /pt_BR/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /ro/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/noswears/index.html -------------------------------------------------------------------------------- /ro/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/noswears/partials/footer.njk -------------------------------------------------------------------------------- /ro/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/noswears/partials/intro.njk -------------------------------------------------------------------------------- /ro/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/noswears/partials/outro.njk -------------------------------------------------------------------------------- /ro/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /ro/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /ro/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /ro/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /ro/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /ro/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /ro/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /ro/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /ro/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /ro/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /ro/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/swears/index.html -------------------------------------------------------------------------------- /ro/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/swears/partials/banner.njk -------------------------------------------------------------------------------- /ro/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/swears/partials/footer.njk -------------------------------------------------------------------------------- /ro/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/swears/partials/intro.njk -------------------------------------------------------------------------------- /ro/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/swears/partials/outro.njk -------------------------------------------------------------------------------- /ro/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/swears/partials/thanks.njk -------------------------------------------------------------------------------- /ro/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /ro/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /ro/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /ro/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /ro/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /ro/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /ro/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /ro/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ro/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /ro/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /ru/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/noswears/index.html -------------------------------------------------------------------------------- /ru/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/noswears/partials/footer.njk -------------------------------------------------------------------------------- /ru/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/noswears/partials/intro.njk -------------------------------------------------------------------------------- /ru/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/noswears/partials/outro.njk -------------------------------------------------------------------------------- /ru/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /ru/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /ru/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /ru/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /ru/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /ru/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /ru/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /ru/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /ru/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /ru/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /ru/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/swears/index.html -------------------------------------------------------------------------------- /ru/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/swears/partials/banner.njk -------------------------------------------------------------------------------- /ru/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/swears/partials/footer.njk -------------------------------------------------------------------------------- /ru/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/swears/partials/intro.njk -------------------------------------------------------------------------------- /ru/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/swears/partials/outro.njk -------------------------------------------------------------------------------- /ru/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/swears/partials/thanks.njk -------------------------------------------------------------------------------- /ru/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /ru/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /ru/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /ru/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /ru/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /ru/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /ru/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /ru/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ru/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /ru/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /sr/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/noswears/index.html -------------------------------------------------------------------------------- /sr/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/noswears/partials/footer.njk -------------------------------------------------------------------------------- /sr/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/noswears/partials/intro.njk -------------------------------------------------------------------------------- /sr/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/noswears/partials/outro.njk -------------------------------------------------------------------------------- /sr/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /sr/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /sr/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /sr/noswears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/noswears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /sr/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /sr/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /sr/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /sr/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /sr/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /sr/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /sr/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/swears/index.html -------------------------------------------------------------------------------- /sr/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/swears/partials/banner.njk -------------------------------------------------------------------------------- /sr/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/swears/partials/footer.njk -------------------------------------------------------------------------------- /sr/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/swears/partials/intro.njk -------------------------------------------------------------------------------- /sr/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/swears/partials/outro.njk -------------------------------------------------------------------------------- /sr/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/swears/partials/thanks.njk -------------------------------------------------------------------------------- /sr/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /sr/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /sr/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /sr/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /sr/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /sr/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /sr/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /sr/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sr/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /sr/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /sv/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/noswears/index.html -------------------------------------------------------------------------------- /sv/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/noswears/partials/footer.njk -------------------------------------------------------------------------------- /sv/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/noswears/partials/intro.njk -------------------------------------------------------------------------------- /sv/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/noswears/partials/outro.njk -------------------------------------------------------------------------------- /sv/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /sv/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /sv/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /sv/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /sv/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /sv/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /sv/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /sv/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /sv/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /sv/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/swears/index.html -------------------------------------------------------------------------------- /sv/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/swears/partials/banner.njk -------------------------------------------------------------------------------- /sv/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/swears/partials/footer.njk -------------------------------------------------------------------------------- /sv/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/swears/partials/intro.njk -------------------------------------------------------------------------------- /sv/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/swears/partials/outro.njk -------------------------------------------------------------------------------- /sv/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/swears/partials/thanks.njk -------------------------------------------------------------------------------- /sv/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /sv/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /sv/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /sv/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /sv/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /sv/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /sv/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /sv/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/sv/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /sv/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /th/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/noswears/index.html -------------------------------------------------------------------------------- /th/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/noswears/partials/footer.njk -------------------------------------------------------------------------------- /th/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/noswears/partials/intro.njk -------------------------------------------------------------------------------- /th/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/noswears/partials/outro.njk -------------------------------------------------------------------------------- /th/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /th/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /th/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /th/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /th/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /th/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /th/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /th/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /th/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /th/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/swears/index.html -------------------------------------------------------------------------------- /th/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/swears/partials/banner.njk -------------------------------------------------------------------------------- /th/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/swears/partials/footer.njk -------------------------------------------------------------------------------- /th/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/swears/partials/intro.njk -------------------------------------------------------------------------------- /th/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/swears/partials/outro.njk -------------------------------------------------------------------------------- /th/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/swears/partials/thanks.njk -------------------------------------------------------------------------------- /th/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /th/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /th/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /th/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /th/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /th/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /th/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /th/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/th/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /th/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /tr/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/noswears/index.html -------------------------------------------------------------------------------- /tr/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/noswears/partials/footer.njk -------------------------------------------------------------------------------- /tr/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/noswears/partials/intro.njk -------------------------------------------------------------------------------- /tr/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/noswears/partials/outro.njk -------------------------------------------------------------------------------- /tr/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /tr/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /tr/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /tr/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /tr/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /tr/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /tr/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /tr/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /tr/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /tr/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/swears/index.html -------------------------------------------------------------------------------- /tr/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/swears/partials/banner.njk -------------------------------------------------------------------------------- /tr/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/swears/partials/footer.njk -------------------------------------------------------------------------------- /tr/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/swears/partials/intro.njk -------------------------------------------------------------------------------- /tr/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/swears/partials/outro.njk -------------------------------------------------------------------------------- /tr/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/swears/partials/thanks.njk -------------------------------------------------------------------------------- /tr/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /tr/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /tr/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /tr/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /tr/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /tr/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /tr/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /tr/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/tr/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /tr/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /ua/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/noswears/index.html -------------------------------------------------------------------------------- /ua/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/noswears/partials/footer.njk -------------------------------------------------------------------------------- /ua/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/noswears/partials/intro.njk -------------------------------------------------------------------------------- /ua/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/noswears/partials/outro.njk -------------------------------------------------------------------------------- /ua/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /ua/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /ua/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /ua/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /ua/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /ua/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /ua/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /ua/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /ua/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /ua/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/swears/index.html -------------------------------------------------------------------------------- /ua/swears/partials/banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/swears/partials/banner.njk -------------------------------------------------------------------------------- /ua/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/swears/partials/footer.njk -------------------------------------------------------------------------------- /ua/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/swears/partials/intro.njk -------------------------------------------------------------------------------- /ua/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/swears/partials/outro.njk -------------------------------------------------------------------------------- /ua/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/swears/partials/thanks.njk -------------------------------------------------------------------------------- /ua/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /ua/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /ua/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /ua/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /ua/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /ua/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /ua/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /ua/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/ua/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /ua/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /zh/noswears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/noswears/index.html -------------------------------------------------------------------------------- /zh/noswears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/noswears/partials/footer.njk -------------------------------------------------------------------------------- /zh/noswears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/noswears/partials/intro.njk -------------------------------------------------------------------------------- /zh/noswears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/noswears/partials/outro.njk -------------------------------------------------------------------------------- /zh/noswears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/noswears/partials/thanks.njk -------------------------------------------------------------------------------- /zh/noswears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/noswears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /zh/noswears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/noswears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /zh/noswears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/noswears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /zh/noswears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/noswears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /zh/noswears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/noswears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /zh/noswears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/noswears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /zh/noswears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/noswears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /zh/noswears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | -------------------------------------------------------------------------------- /zh/swears/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/swears/index.html -------------------------------------------------------------------------------- /zh/swears/partials/banner.njk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zh/swears/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/swears/partials/footer.njk -------------------------------------------------------------------------------- /zh/swears/partials/intro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/swears/partials/intro.njk -------------------------------------------------------------------------------- /zh/swears/partials/outro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/swears/partials/outro.njk -------------------------------------------------------------------------------- /zh/swears/partials/thanks.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/swears/partials/thanks.njk -------------------------------------------------------------------------------- /zh/swears/tips/01-magic-time-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/swears/tips/01-magic-time-machine.md -------------------------------------------------------------------------------- /zh/swears/tips/02-change-last-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/swears/tips/02-change-last-commit.md -------------------------------------------------------------------------------- /zh/swears/tips/03-change-last-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/swears/tips/03-change-last-commit-message.md -------------------------------------------------------------------------------- /zh/swears/tips/04-accidental-commit-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/swears/tips/04-accidental-commit-master.md -------------------------------------------------------------------------------- /zh/swears/tips/06-dude-wheres-my-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/swears/tips/06-dude-wheres-my-diff.md -------------------------------------------------------------------------------- /zh/swears/tips/07-undo-a-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/swears/tips/07-undo-a-commit.md -------------------------------------------------------------------------------- /zh/swears/tips/08-undo-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/swears/tips/08-undo-a-file.md -------------------------------------------------------------------------------- /zh/swears/tips/20-fuck-this-noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksylor/ohshitgit/HEAD/zh/swears/tips/20-fuck-this-noise.md -------------------------------------------------------------------------------- /zh/swears/tips/tips.json: -------------------------------------------------------------------------------- 1 | { "permalink": false } 2 | --------------------------------------------------------------------------------