Make sure all changes are commited including the .gitignore
To clear the repo, use: git rm -r --cached .
rm
is the remove command-r
will allow recursive removal
/* | |
Josh's Custom CSS Reset | |
https://www.joshwcomeau.com/css/custom-css-reset/ | |
*/ | |
*, *::before, *::after { | |
box-sizing: border-box; | |
} | |
* { | |
margin: 0; | |
} |
#footer { | |
position:fixed; | |
left:0px; | |
bottom:0px; | |
height:30px; | |
width:100%; | |
background:#999; | |
} | |
/* IE 6 */ |
"postcssSorting.config": { | |
"order": [ | |
"custom-properties", | |
"dollar-variables", | |
"at-rules", | |
"declarations", | |
{ | |
"type": "at-rule", | |
"name": "media" | |
}, |
<?php | |
/** | |
* GravityView Edit Entry - render frontend | |
* | |
* @package GravityView | |
* @license GPL2+ | |
* @author Katz Web Services, Inc. | |
* @link http://gravityview.co | |
* @copyright Copyright 2014, Katz Web Services, Inc. | |
*/ |
gem install jekyll | |
Successfully installed jekyll-3.4.0 | |
1 gem installed | |
Sites/epluno | |
❯ npm run gulp serve | |
> [email protected] gulp /Users/ed/Sites/epluno | |
> gulp "serve" |
{"lastUpload":"2020-09-03T01:08:39.942Z","extensionVersion":"v3.4.3"} |
# BEGIN WordPress | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^index\.php$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule . /index.php [L] | |
</IfModule> |
#!/bin/sh | |
### | |
# SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
# For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
### | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |