
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
git-script
Advanced tools

scriptable progmatic git commands in node, this module allows to write git scripts in node.js
Install the module with: npm install git-script
Custom Command Example
var git = require('git-script');
git.command('checkout -b develop', function(err, done){
if(err){console.error(err)}
done(err);
});
Github Clone Example
var git = require('git-script');
var gitConf = {
proto: 'ssh', //the protocol in which to use to clone from github
meta: false, //turning this to true will log out the response object and other useless shit from the function its there for debugging
};
git.cloneFromGithub('sableloki', 'dotfiles', gitConf, function(){
console.log('Cloned Sableloki's Dotfiles YAY!!!!);
});
Git Clone Example
var git = require('git-script');
git.clone('git@github.com:sableloki/dotfiles.git', function(){
console.log('Cloned Sableloki's Dotfiles YAY!!!!);
});
git-script https://github.com/sableloki/git-script
Source: lib/git-script.js
Make a new git repo
Parameters:
{Object} err Error Object{String} repoName name of folder to initialize repo (must not exist)Return:
{Function} Callback
Add a new blank file to the repo and commit it
Parameters:
{Object} err Error Object{String} fileName name of file{String} commitMsg commit message{Function} cb CallbackReturn:
{Function} Callback
run a custom git command with flags
Parameters:
{Object} err Error Object{String} com full command minus 'git '{Function} cb CallbackReturn:
{Function} Callback
add a file to git index
Parameters:
{Object} err Error Object{String} fileName file to be added{Function} cb Callbackcommit changes to git
Parameters:
{Object} err Error Object{String} fileName file to be added{Function} cb CallbackCreate a git branch
Parameters:
{Object} err Error Object{String} branchName name of branch{Function} cb CallbackReturn:
{Function} Callback
run git checkout on a file
Parameters:
{Object} err Error Object{String} str string to pass to checkout (file, branch, etc.){Function} cb CallbackReturn:
{Function} Callback
git clone from github
Parameters:
{Object} err Error Object{String} usr Github Username{String} repo Repo Name{String} path Path to save repo (defaults to __dirname/REPO_NAME){Object} config config object{Function} cb CallbackReturn:
{Function} Callback
Git clone
Parameters:
{Object} err Error Object{String} url git url{Function} cb CallbackReturn:
{Function} Callback
—generated by apidox—
FAQs
scriptable progmatic git commands in node
The npm package git-script receives a total of 8 weekly downloads. As such, git-script popularity was classified as not popular.
We found that git-script demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.