FrPSUG / LogManagement

PowerShell module to manage logs
8 stars 5 forks source link

Build Status

LogManagement

Community module to create and manage log files

Use cases

Requirements

Please vote and submit your ideas in issues.

Milestone 1

Milestone 2

Other needs

Commands

To validate

Contribution

Fork the repo, edit and push back

  1. Fork the repository
  2. Clone locally
  3. Run build.ps1 -InstallDependencies
    1. NOTE: You need to do this only the first time
  4. Run build.ps1 -task clean,build,test each time you modify the code

Pull the changes to your fork

# Assuming you have a fork and did a git clone locally
# Navigate to your local copy
# Make sure you don't have pending changes (push them first if its the case)
# Add the remote source repo here we call it "upstream"
git remote add upstream https://github.com/FrPSUG/LogManagement.git

# retrieve the changes from upstream
git fetch upstream

# updating your fork from original repo to keep up with their changes
git pull upstream master

# to push the code to your fork:
git push