New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

grunt-gitpull

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-gitpull

Clone and Pull repos with Grunt

latest
Source
npmnpm
Version
0.3.0
Version published
Maintainers
1
Created
Source

grunt-gitPull

Clone and Pull repos with Grunt

Getting Started

This plugin requires Grunt.

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-gitPull --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-gitPull');

The "gitPull" task

Overview

In your project's Gruntfile, add a section named gitPull to the data object passed into grunt.initConfig().

grunt.initConfig({
  gitPull: {
    set: {
      repos: [
        // array of object with relative path arrays and repo keys.
      ]
    },
  },
})

Now when running grunt gitPull the plugin will check all paths and see if there is a git repo in them. If so, it will run a git pull on that repository. If it is not present, it will run git clone with the repository specified.

Usage Example

In this example, the default options are used to do something with whatever. So if the testing file has the content Testing and the 123 file had the content 1 2 3, the generated result would be Testing, 1 2 3.

grunt.initConfig({
  gitPull: {
    example: {
      repos: [
        {
          path: ['relative', 'path'], // relative/path/
          repo: 'git@git.repository.com/myRepo.git'
        },
        {
          path: ['another', 'path'] // another/path/
          repo: 'git@git.repository.com/otherRepo.git'
        }
      ]
    },
  },
})

Release History

0.1.4

  • Support older version of git

0.1.2

  • Parse out the repo name rather than specifying it.

0.1.1

  • Report which repo is being processed.
  • Fix README docs.

0.1.0

  • First release.
  • Basic git clone/pull behavior.

License

Copyright (c) 2014 Luke Woodward. Licensed under the MIT license.

Keywords

gruntplugin

FAQs

Package last updated on 05 Mar 2016

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