Skip to content

UCalgaryZEUS/CAN-Bus-Package

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CANBus Package README

Overview

The purpose of this README is to act as a brief reference for the process used in revision control. It walks the user through the steps starting from the inital fork to the final pull request.

How To Use Repository

Initial First Time Steps

  1. Perform a fork of the CAN-Bus-Package repo on github.

  2. Clone the fork onto your machine.

  3. Remote add the upstream repository.

Adding Content to Repo

Keeping Updated with ZEUS master

Periodically, these steps will have to be run to ensure that your master is up to date with ZEUS' master.

Important
NEVER do any work on your local master; this will cause merge conflicts.
  1. git checkout master

  2. git fetch ZEUS

  3. git rebase ZEUS/master

  4. git push origin master

    Note
    The previous step is for making your remote fork is up to date.
  5. git checkout -b new-branch

    Note
    This step will create a new branch for you to work on issues or create content with.

Pushing Content

These steps are used to push work done on your local repository to your remote one. . git add files

  1. git commit -m "issue description and work done"

  2. git push origin new-branch NOTE: After the first push to origin new-branch, you only need to use git push to push it to origin new-branch

Pull Requests

When you are ready to perform a pull request, go onto github and create a pull request appropriately setting somebody as the assignee. For information on creating pull requests, see this resource.

About

Package used to monitor CAN Bus on Zephyr

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published