Skip to content

Instantly share code, notes, and snippets.

View sveggiani's full-sized avatar
🚀
brand new day

Sebastián Veggiani sveggiani

🚀
brand new day
View GitHub Profile
@sveggiani
sveggiani / webpack.config.dev.js
Last active September 5, 2017 14:34 — forked from matyax/webpack.config.dev.js
Webpack development config file #code-fragments #webpack #building
var path = require('path'),
webpack = require('webpack'),
HtmlWebpackPlugin = require('html-webpack-plugin'),
OpenBrowserPlugin = require('open-browser-webpack-plugin'),
ExtractTextPlugin = require('extract-text-webpack-plugin'),
precss = require('precss'),
autoprefixer = require('autoprefixer'),
DashboardPlugin = require('webpack-dashboard/plugin');
mockMode = false;
@sveggiani
sveggiani / gist:e023eb6e14ccd9ae2350
Created March 6, 2015 12:35 — forked from lttlrck/gist:9628955
git rename local and remote branch #git #branch
git branch -m old_branch new_branch # Rename branch locally
git push origin :old_branch # Delete the old branch
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote