![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
grunt-git-init-and-deploy
Advanced tools
Creates an empty git repository, commit/push all changes to the provided git remote/branch.
Creates an empty git repository, commit/push all changes to the provided git remote/branch.
If you haven't used grunt before, be sure to check out the Getting Started guide.
From the same directory as your project's Gruntfile and package.json, install this plugin with the following command:
npm install grunt-git-init-and-deploy
Once that's done, add this line to your project's Gruntfile:
grunt.loadNpmTasks('grunt-git-init-and-deploy');
Inside your Gruntfile.js
file add a section named gitInitAndDeploy
. This section specifies the
options to provide remote repository, branch and commit message.
Example to deploy the deploy folder to Heroku:
gitInitAndDeploy: {
dist: {
options: {
repository: 'git@heroku.com:' + process.env.HEROKU_APP_NAME + '.git',
message: 'deployment for v.' + process.env.BUILD_NUMBER + '-' + process.env.ENVIRONMENT,
branch: 'master' // optional: default is 'master'
},
src: 'deploy'
}
}
Copyright (c) 2013 Juan Pablo Garcia Licensed under the MIT license.
FAQs
Creates an empty git repository, commit/push all changes to the provided git remote/branch.
The npm package grunt-git-init-and-deploy receives a total of 0 weekly downloads. As such, grunt-git-init-and-deploy popularity was classified as not popular.
We found that grunt-git-init-and-deploy 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.