Skip to content

Instantly share code, notes, and snippets.

@mafintosh
Created February 21, 2019 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mafintosh/10fb254103bf727cf136460002b79e62 to your computer and use it in GitHub Desktop.
Save mafintosh/10fb254103bf727cf136460002b79e62 to your computer and use it in GitHub Desktop.
npm-clone () {
if echo $1 | grep '/' >/dev/null; then
git clone git@github.com:$1.git
else
git clone git@github.com:mafintosh/$1.git
fi
cd $(echo $1 | sed 's|.*/||')
[ -f "package.json" ] && npm install
cd ..
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment