A template repository that adheres to Entisys360's Git standards
This repository is a template for initializing new git repositories or importing existing work.
Follow the official Github documentation for creating a new repository using this template.
Git style and usage guidelines can be found in Entisys360's Microsoft Teams #Git channel.
Explain any code style changes specific to this repository and show how to validate here.
Clone this repository
git clone https://github.com/entisys360/git-template.git
Change directory into ./git-template
Checkout a new branch
git checkout -b your_new_branch_name
Add and/or modify files and directories
git add your_new_files
Commit your code often as you work
git commit -m "Add new file to introduce feature X"
Push your commits upstream to the Git server
git push --set-upstream origin your_branch_name
Create a pull request when your branch is ready to merge