Skip to content

Instantly share code, notes, and snippets.

@saledwin
saledwin / Git_Commands.md
Last active April 25, 2018 14:43
Util git commands

Util Git commands

  • Show changes git status
  • Commit changes with message git commit -m "Commit message"
  • Show actual branch git branch
  • Add files to stash git add --A
  • Discard changes git checkout -- .

Branches

  • Switched to a branch git checkout branch_name 
@Fishrock123
Fishrock123 / gulp.js
Last active August 1, 2021 11:19
gulp & browserify (+watchify +babelify)
var gulp = require('gulp')
var browserify = require('browserify')
var watchify = require('watchify')
var babelify = require('babelify')
var source = require('vinyl-source-stream')
var buffer = require('vinyl-buffer')
var merge = require('utils-merge')