Microsoft Security Copilot is a generative AI-powered assistant that enhances security operations by enabling defenders to respond and protect at machine speed and scale.
Microsoft Security Copilot is a generative AI-powered security solution that helps increase the efficiency and capabilities of defenders to improve security outcomes at machine speed and scale, while remaining compliant to responsible AI principles
Security teams and IT professionals use Security Copilot to automate security operations, streamline incident response, and conduct threat hunting more efficiently. It empowers defenders to improve security outcomes by leveraging AI-driven insights and automation in daily security workflows.
This tool is designed to be used in conjunction with Microsoft’s security ecosystem and requires adherence to responsible AI principles. Contributions require signing a Contributor License Agreement (CLA). It is recommended to work on branches and keep your fork synced with the upstream repository for smooth collaboration.
Get a GitHub account at www.github.com and log in.
Fork the repository from https://github.com/Azure/Copilot-For-Security on the master branch.
Clone your fork to your local machine using Git: git clone <your-fork-url>.
Navigate into the cloned directory: cd Copilot-For-Security-Fork.
Set the upstream remote to the original repo: git remote add upstream https://github.com/Azure/Copilot-For-Security.
Verify remotes with: git remote -v.
Sync your local repo with upstream master: git pull upstream main.
Create a new branch for your work: git checkout -b <branch-name>.
git clone <your-fork-url>
Clones your fork of the Security Copilot repository to your local machine.
git remote add upstream https://github.com/Azure/Copilot-For-Security
Adds the original Security Copilot repository as the upstream remote.
git pull upstream main
Synchronizes your local repository with the latest changes from the upstream master branch.
git checkout -b <branch-name>
Creates and switches to a new branch for isolated development.