Skip to content
View jedlovescpe2's full-sized avatar

Highlights

  • Pro

Block or report jedlovescpe2

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Gulp Sass with autoprefixer and minify. Gulp Sass with autoprefixer and minify.
    1
    var gulp        = require('gulp'),
    2
        sass        = require('gulp-sass'),
    3
        rename      = require('gulp-rename'),
    4
        cssmin      = require('gulp-cssnano'),
    5
        prefix      = require('gulp-autoprefixer'),
  2. Simple automated GIT Deployment usin... Simple automated GIT Deployment using Hooks
    1
    # Simple automated GIT Deployment using GIT Hooks
    2
    
                  
    3
    Here are the simple steps needed to create a deployment from your local GIT repository to a server based on [this](https://www.digitalocean.com/community/tutorials/how-to-use-git-hooks-to-automate-development-and-deployment-tasks) in-depth 
    4
    tutorial.
    5