Skip to content

Development of ADCS flight software for the HuskySat-1 mission at the University of Washington.

Notifications You must be signed in to change notification settings

HuskySatLab/uw_hs1_adcs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 

Repository files navigation

Basic github workflow

  1. Check out develop (if not already):
git checkout develop
  1. Pull the newest version of develop:
git remote update && git pull
  1. Start a local feature branch:
git branch <new-feature>
  1. Checkout this new feature branch:
git checkout <new-feature>
  1. Add/delete/edit files.

  2. Stage modifications for commit:

git add <files>
  1. Check status of files staged for commit:
git status
  1. Commit changes:
git commit -m "meaningful description of changes"
  1. Make more changes and repeat process of committing.

  2. When ready to merge your branch, push your feature branch to origin for review:

git checkout develop
git push origin <feature-branch>
  1. Make a pull request on github.com and add reviewers appropriately.

  2. When branch has been reviewed and merged, delete the branch in origin.

  3. Delete old feature branch locally (unless you want to keep it around as a sandbox

git branch -D <feature-branch>

About

Development of ADCS flight software for the HuskySat-1 mission at the University of Washington.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 61.4%
  • JavaScript 23.5%
  • C 10.1%
  • MATLAB 2.5%
  • Makefile 1.1%
  • CSS 0.8%
  • Other 0.6%