git switch branchname
git pull --rebase
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ## Pre-requisite: You have to know your last commit message from your deleted branch. | |
| git reflog | |
| # Search for message in the list | |
| # a901eda HEAD@{18}: commit: <last commit message> | |
| # Now you have two options, either checkout revision or HEAD | |
| git checkout a901eda | |
| # Or | |
| git checkout HEAD@{18} | 
I hereby claim:
- I am guirec on github.
- I am guirec (https://keybase.io/guirec) on keybase.
- I have a public key whose fingerprint is 4B8F 5336 545E 9FBC 5BCA 52DD B115 DE53 CAB1 C94D
To claim this, I am signing this object:
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* | |
| * Example of a simple gulpfile for Magento | |
| * | |
| * $ npm install --save gulp | |
| * $ npm install --save gulp-sass gulp-autoprefixer gulp-minify-css gulp-rename gulp-concat gulp-uglify gulp-cache gulp-imagemin | |
| */ | |
| // Load plugins | |
| var gulp = require('gulp'); | |
| var sass = require('gulp-sass'); |