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.)
- Host: GitHub
- URL: https://github.com/jimbrig/PSGitFiles
- Owner: jimbrig
- License: mit
- Created: 2023-03-31T02:33:25.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-29T20:26:17.000Z (about 1 year ago)
- Last Synced: 2024-11-13T14:54:20.930Z (5 months ago)
- Language: PowerShell
- Size: 11.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - jimbrig/PSGitFiles - PowerShell Module for generating and managing git files (`.gitignore`, `.gitattributes`, etc.) (PowerShell)
README
# PSGitFiles
> PowerShell Module for managing git repository files (i.e. `.gitignore`, `.gitattributes`, etc.)
## Install
```powerShell
Install-Module PSGitFiles
```## Usage
```powershell
Import-Module PSGitFilesAdd-GitIgnore -List @("Windows", "PowerShell")
Add-GitAttributes -List @("Common", "Markdown", "PowerShell")
```