Skip to content

Latest commit

 

History

History
47 lines (37 loc) · 2.64 KB

File metadata and controls

47 lines (37 loc) · 2.64 KB
title Developer Environment Basics
layout page

The Developer Notes scratchpad has been moved....

Synopsis: Everything coders need to git up and running for FRC 2021

Welcome coders!

FRC Code development takes place in the team's private repository.

Pre-requisites for contributors:

  • installation of the frc 2021 developer environment w/ 3rd party libraries (this document)
  • understanding of git basics
  • usage of the team's github workflow

DevEnv Setup and Configuration

    git config --global user.name "[your_github_account_name]"
    git config --global user.email "[your_github_email_address]"
    git config --global push.default current
  • connect with team github repo maintainer, provide your github account name and request a team invite
  • Clone the code repository clone screenshot
  • Open command prompt, change to the directory where you want the repo to be, and execute... clone_command screenshot
  • Start WPILib installed VSCode and open the FRC-2021-Team-4026 folder which git just created
  • Install support for 3rd party libraries

Optional

Futher Reading...

  • Github Guides provides a general overview of: git, github, github pages, forking projects, issues, tracking people and projects, markdown, and documentation. It should take a little less than an hour and a half to read through all of the guides.