Git Product home page Git Product logo

maav's Introduction

MAAV Mission 9 Repo - 2022

install git make install_everything executable

Introduction

This README document is a work-in-progress. We will populate this more later.

Install and Simulator Setup Instructions

Let MAAV Software Leadership know if you run into issues during any of the setup.

Additionally, we have simulation instructions for setting up a simulation depth camera and setting up our mast model

Onboarding

The following is a link to the onboarding project for Fall 2022.

Development Etiquette

This section will go over our team's expectations with using Git/Github. We will also provide a summary of common Git operations in case you are new to using Git with software projects. If you need help with Git/Github, reach out to the team in Slack.

When in doubt, check out "Oh Shit! Git!"

Git Identity

Make sure your identity through Git is setup well.

# List current global config, which may contain identity info

$ git config --global -l
user.name=Drew Scheffer
[email protected]
core.editor=vim
...

# Set or Change some things (for any repository you use)
# Omit --global to just make it for THIS repository

$ git config --global user.name "Drew Scheffer"
$ git config --global user.email "[email protected]"

Git Branches

When developing a new feature, bug fix, or set of changes, make a new branch. This will allow your master branch to stay clean and organized in terms of commit history and file changes. If you are added to the MAAV-Software organization, it will also allow you to push changes to this project and make pull requests without needing to fork the repository.
Please name your branch in the format uniqname/branch_name (e.g. drewskis/my_branch)

This project's master branch is protected, and only Software Leadership can merge in changes from other branches or forks (more on forks later).

# List branches
$ git branch

# Create a new branch
$ git checkout -b <branch>

# Switch to a branch
$ git checkout <branch>

# Delete a branch (will warn you if branch is not fully merged into master)
$ git branch -d <branch>

Git Repository Fork

Simple GitHub Forking Tutorial:

https://guides.github.com/activities/forking/

Forking repositories is a straightforward approach to making changes to shared repositories. 'Forked' repositories are personal copies of a shared project, in which you can make changes and then offer those changes up to the original project.

If you are officially a member of MAAV Software, forking the repo is optional. However, forking gives you access control over your pushed changes - whereas anyone else on MAAV Software can view and make changes to any branch that is not master.

Simulating the Vehicle

We will be using Gazebo to simulate vehicle behavior. This is done within a virtual environment to ensure dependencies are setup correctly in our code. Gazebo is already installed for you if you follow the install instructions for your system.

maav's People

Contributors

schefferac2020 avatar tabaddor avatar jaminock avatar kari-naga avatar jepye-3141 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.