#Create bitbucket branch
##Create local branch
$ git checkout -b sync
Switched to a new branch 'sync'
$ git branch
master
* sync
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 |
#Create bitbucket branch
##Create local branch
$ git checkout -b sync
Switched to a new branch 'sync'
$ git branch
master
* sync
#This experiment is done on Ubuntu 12.04. All the commands are executed in Terminal unless otherwise mentioned.
##Clone Chris Eppstein's Responsive Layouts With SASS
###Open Terminal and go to the folder where you want create this test project and execute following command
git clone git://gist.github.com/1163006.git
###Create a project with Compass
compass create test_responsive
cp gist-3993794/*.scss test_responsive/sass/
cp gist-3993794/*.css test_responsive/stylesheets/
###Copy all the code from sass/output.scss into sass/screen.scss
Other people's projects:
My projects (tutorials are on my blog at http://maxoffsky.com):