Latest Threat ResearchGlassWorm Loader Hits Open VSX via Developer Account Compromise.Details
Socket
Book a DemoInstallSign in
Socket

git-todo

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-todo

Git repository status scanner.

Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
3
Maintainers
1
Weekly downloads
 
Created
Source

git-todo

Git repository status scanner.

Checks github for:

  • Open pull requests
  • Commits to master since the last semver tag

Checks all git repositories in a given directory for:

  • Modified files
  • Unpushed changes
  • Unpulled changes

Installation

A config file needs to be created in ~/.config/git-todo. This is standard CommonJS module exporting the options listed below.

Options

  • Github authentication options.
  • (optional) repoFilter : Method used to filter server-side repos from the status results.

Example

module.exports = {
  auth: 'oauth',
  token: 'OAuth Token generated from GitHub Admin',

  repoFilter: function(repo) {
    if (repo.owner.login === 'kpdecker') {
      return /jsdiff/.test(repo.name);
    } else {
      return true;
    }
  }
};

Usage

git-todo [local dir name ...]

FAQs

Package last updated on 29 Aug 2013

Did you know?

Socket

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.

Install

Related posts