Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

git-config-path

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-config-path

Resolve the path to the user's local or global .gitconfig.

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.4M
decreased by-9.41%
Maintainers
1
Weekly downloads
 
Created

What is git-config-path?

The git-config-path npm package is a utility that helps you find the path to the .gitconfig file. This can be useful for reading or modifying Git configuration settings programmatically.

What are git-config-path's main functionalities?

Get global .gitconfig path

This feature allows you to get the path to the global .gitconfig file. The 'global' argument specifies that you want the global configuration file path.

const gitConfigPath = require('git-config-path');
const globalConfigPath = gitConfigPath('global');
console.log(globalConfigPath);

Get system .gitconfig path

This feature allows you to get the path to the system .gitconfig file. The 'system' argument specifies that you want the system configuration file path.

const gitConfigPath = require('git-config-path');
const systemConfigPath = gitConfigPath('system');
console.log(systemConfigPath);

Get local .gitconfig path

This feature allows you to get the path to the local .gitconfig file. The 'local' argument specifies that you want the local configuration file path.

const gitConfigPath = require('git-config-path');
const localConfigPath = gitConfigPath('local');
console.log(localConfigPath);

Other packages similar to git-config-path

Keywords

FAQs

Package last updated on 18 Nov 2018

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

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