===download the script===
http://market.aliyun.com/products/53690006/cmgj000262.html?spm=5176.775974333.2.4.WgIcs1
===install manual=== upload the package into your server then find it.
chmod –R 777 sh-1.5.0
cd sh-1.5.0 ./install.sh
===download the script===
http://market.aliyun.com/products/53690006/cmgj000262.html?spm=5176.775974333.2.4.WgIcs1
===install manual=== upload the package into your server then find it.
chmod –R 777 sh-1.5.0
cd sh-1.5.0 ./install.sh
| 1. create a new hub in bitbucket | |
| 2. create a new foder in your computer and enter it | |
| 3. check if there is ssh | |
| ``` | |
| ssh -v | |
| ``` | |
| 4. create your new ssh-key | |
| ``` | |
| ssh-keygen |
| # delete local tag '12345' | |
| git tag -d 12345 | |
| # delete remote tag '12345' (eg, GitHub version too) | |
| git push origin :refs/tags/12345 | |
| # alternative approach | |
| git push --delete origin tagName | |
| git tag -d tagName |
Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
| echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
| . ~/.bashrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install # ok, fine, this step probably takes more than 30 seconds... | |
| curl https://www.npmjs.org/install.sh | sh |