Use git signoff-rebase instead of git rebase -i to sign older commits, using the alias defined here.
Example:
git signoff-rebase HEAD~3
Use git signoff-rebase instead of git rebase -i to sign older commits, using the alias defined here.
Example:
git signoff-rebase HEAD~3
Your Azure account needs to be a Global Administrator so you can create service principal access.
| @mixin for-phone-only { | |
| @media (max-width: 599px) { @content; } | |
| } | |
| @mixin for-tablet-portrait-up { | |
| @media (min-width: 600px) { @content; } | |
| } | |
| @mixin for-tablet-landscape-up { | |
| @media (min-width: 900px) { @content; } | |
| } | |
| @mixin for-desktop-up { |
| uncss: { | |
| dist: { | |
| options: { | |
| ignore: [ | |
| /(#|\.)fancybox(\-[a-zA-Z]+)?/, | |
| /expanded/, | |
| /js/, | |
| /wp-/, | |
| /align/, | |
| /admin-bar/, |
A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.
Running a local server for testing purposes:
Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist.
Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).
| # JS files | |
| JS_FINAL = js/project-name-all.js | |
| JS_TARGETS = js/file1.js \ | |
| js/file2.js \ | |
| js/file3.js | |
| # CSS files | |
| CSS_FINAL = css/project-name-all.css | |
| STYLUS_TARGETS = css/file1.styl \ |