Socket
Socket
Sign inDemoInstall

simple-git

Package Overview
Dependencies
Maintainers
1
Versions
259
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-git - npm Package Compare versions

Comparing version 1.31.0 to 1.31.1

2

package.json
{
"name": "simple-git",
"description": "Simple GIT interface for node.js",
"version": "1.31.0",
"version": "1.31.1",
"author": "Steve King <steve@mydev.co>",

@@ -6,0 +6,0 @@ "contributors": [

@@ -42,4 +42,2 @@ # Simple Git

`.branch(handlerFn)` list all branches
`.tags(handlerFn)` list all tags

@@ -68,3 +66,3 @@

`.branch([handlerFn])` gets a list of all branches, calls `handlerFn` with two arguments, an error object
and [BranchSummary](blob/master/src/BranchSummary.js) instance.
and [BranchSummary](src/BranchSummary.js) instance.

@@ -201,5 +199,5 @@ `.commit(message, handlerFn)` commits changes in the current working directory with the supplied message where the

require('simple-git')()
.config('user.name', 'Some One')
.config('user.email', 'some@one.com')
.addConfig('user.name', 'Some One')
.addConfig('user.email', 'some@one.com')
.commit('committed as "Some One", 'file-one')
.commit('committed as "Another Person"', 'file-two', { '--author': '"Another Person <another@person.com>"' })
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc