Help with SQL commands to interact with a MySQL database
- Mac /usr/local/mysql/bin
- Windows /Program Files/MySQL/MySQL version/bin
- Xampp /xampp/mysql/bin
| #!/bin/bash | |
| set -x #echo on | |
| remote_url=$(git config --get remote.origin.url) | |
| for branch in $(git branch --all | grep '^\s*remotes' | egrep --invert-match '(:?HEAD|master)$'); do | |
| branch_name=$(echo $branch| cut -d'/' -f 3) | |
| git clone -b $branch_name $remote_url $branch_name | |
| done |
| // ==UserScript== | |
| // @name get vsix | |
| // @namespace https://gist.github.com/Mido22 | |
| // @include https://marketplace.visualstudio.com/items?itemName=* | |
| // @version 0.0.1 | |
| // @grant none | |
| // ==/UserScript== | |