Skip to content

Instantly share code, notes, and snippets.

@shaohua
Forked from possibilities/gist:3327056
Created June 8, 2013 01:33
Show Gist options
  • Select an option

  • Save shaohua/5733504 to your computer and use it in GitHub Desktop.

Select an option

Save shaohua/5733504 to your computer and use it in GitHub Desktop.
# Setup dir and repo
mkdir underscore-string
cd underscore-string
git init
# Make some files we'll need
touch README.md package.js smart.json
# Add the submodule and checkout the desired branch
git submodule add git://github.com/epeli/underscore.string.git lib/underscore.string
cd lib/underscore.string
git co v.2.2.0rc
[EDIT THE FILES CREATED ABOVE, SEE REPO: https://github.com/possibilities/meteor-underscore-string]
[CREATE THE REMOTE REPO ON GITHUB (or wherever)]
# Setup the remote
git remote add origin https://github.com/possibilities/meteor-underscore-string.git
# Commit and release
cd -
git add . && git ci -am'init' && git push origin master
mrt release . # Publishes to https://atmosphere.meteor.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment