...
- Fork the repository
- Clone and then open it up on your prefered code editor
- Open your terminal & set the upstream branch: git remote add upstream
https://github.com/zurichat/zc_plugin_company_files.git
- Pull upstream
git pull upstream main
- Create a new branch for the user story you're working on eg :
git checkout -b feat-import-file-from-url
- After making changes, do
git add .
- Commit your changes with a descriptive commit message :
git commit -m "your commit message"
. - To make sure there are no conflicts :
git pull upstream main
- Push changes to your new branch :
git push origin feat-import-file-from-url
- Create a pull request to the
dev
branch.