Skip to content

e4coder/rurik

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Contribution Guide

This guide details the general rules to follow when working. Each project may have its own variation of this contribution guide.

NOTE: Never push code directly to the organization repo

Initial Setup

  1. Install git

  2. Fork the project repo

  3. Clone your fork on your local computer

git clone https://github.com/<your-username>/<repository-name>.git
  1. Change working directory
cd <repository-name>
  1. Add the upstream repository
git remote add upstream https://github.com/VIZZ-WEB-SOLUTIONS/<repository-name>.git
  1. Now git remote -v should show 2 repositories.

    • origin Your forked repository
    • upstream Vizz Web Solutions Dev repository
  2. install dependencies

Develop your contributions

  1. Pull the latest changes
git fetch --all
git pull --rebase upstream main
  1. Create a branch for the changes you want to work on rather than working off of your local main branch:
// new branch name should relate to the features you are working on
git checkout -b <new-branch-name> upstream/main
  1. Write some code!

Submitting a pull request

  1. git push -u origin <new-branch-name>

  2. In order to make the team aware of your changes, you can make a PR to the VIZZ-WEB-SOLUTIONS/<repository_name> repository from your fork.

  3. Ask other team members to review the code.

  4. Resolve all merge conflicts.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages