An open API service indexing awesome lists of open source software.

https://github.com/jimbrig/PSGitFiles

PowerShell Module for generating and managing git files (`.gitignore`, `.gitattributes`, etc.)
https://github.com/jimbrig/PSGitFiles

Last synced: 5 months ago
JSON representation

PowerShell Module for generating and managing git files (`.gitignore`, `.gitattributes`, etc.)

Awesome Lists containing this project

README

        

# PSGitFiles

> PowerShell Module for managing git repository files (i.e. `.gitignore`, `.gitattributes`, etc.)

## Install

```powerShell
Install-Module PSGitFiles
```

## Usage

```powershell
Import-Module PSGitFiles

Add-GitIgnore -List @("Windows", "PowerShell")

Add-GitAttributes -List @("Common", "Markdown", "PowerShell")
```