crop-github-images-cli
Version:
> Crop your images and gifs for your GitHub Profile!
10 lines (6 loc) • 317 B
JavaScript
const execa = require("execa");
exports.cloneGistPath = hash =>
execa("git", ["clone", `https://gist.github.com/${hash}.git`]);
exports.commitAll = gitPath =>
execa("git", [`--git-dir=${gitPath}`, "commit", "-am", "update gist file"]);
exports.push = gitPath => execa("git", [`--git-dir=${gitPath}`, "push"]);