See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| // paste this file on a empty directory | |
| // npm i axios | |
| // You should go to your browser on Cookie session and get JSESSIONID and li_at from Linkedin Section | |
| const JSESSIONID = 'YOUR JSESSIONID' | |
| const liAT = 'YOUR li_at' | |
| import axios from 'axios' | |
| const headers = { |
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| # fetch all branches | |
| # From: http://stackoverflow.com/questions/10312521/how-to-fetch-all-git-branches | |
| #!/bin/bash | |
| for branch in `git branch -a | grep remotes | grep -v HEAD | grep -v master`; do | |
| git branch --track ${branch##*/} $branch | |
| done | |
| git fetch --all |