Repositories
Our GitHub repositories and projects. Clone, contribute, and collaborate.
View Organization on GitHubOur Projects
Fraser_Labs
PublicThe Dev Hub website you're looking at right now. Internal documentation and resources for the development team.
Clone this repository:
git clone https://github.com/Fraser-AIS/Fraser_Labs.git
Clone this repository:
git clone https://github.com/Fraser-AIS/Fraser-Leads.git
Clone this repository:
git clone https://github.com/Fraser-AIS/Recruiting-Hub.git
Git Quick Reference
Common Git commands you'll use when working with our repositories.
Cloning & Setup
Clone a repository:
git clone <repo-url>
Check current status:
git status
Branching
Create and switch to a new branch:
git checkout -b feature/your-feature
Switch to an existing branch:
git checkout main
Making Changes
Stage all changes:
git add .
Commit with a message:
git commit -m "Your commit message"
Syncing
Pull latest changes:
git pull origin main
Push your changes:
git push origin your-branch
For detailed Git workflow and branching strategy, see our Standards page.
Contributing
When contributing to our repositories, please follow these steps:
- Create a feature branch from
main - Make your changes and commit with clear messages
- Push your branch and open a Pull Request
- Request a code review from a team member
- Address any feedback and merge when approved
See our Standards page for detailed coding guidelines and PR requirements.