-
Notifications
You must be signed in to change notification settings - Fork 4
CIRN repository help
Looking for a general understanding of how GitHub works? Click Here
$ cd your/development/folder
$ git clone https://github.com/Coastal-Imaging-Research-Network/cBathy-Toolbox.git
OR
$ git clone https://github.com/Coastal-Imaging-Research-Network/UAV-Processing-Toolbox.git
$ git checkout master
run code as you’d like
$ git checkout development
Make your own branch for editing
$ git branch your_branch_name
$ git checkout your_branch_name
Check to make sure you’re editing your branch
$ git branch -v
Add files to git version control
$ git add new_file.txt
commit your changes locally (to be able to come back to that point at any time)
$ git commit -a -m "Describe your changes"
Once you are satisfied with all your changes, PUSH your branch to the online repository
$ git push origin your_branch_name
$ cd your/development/folder
$ git checkout your_branch_name
$ git pull origin development
$ git branch -v
$ git add new_file.txt
$ git commit -a -m "Describe your changes"
$ git push origin your_branch_name
- Go to the code tab of the GitHub repository (i.e., https://github.com/Coastal-Imaging-Research-Network/cBathy-Toolbox)
- change the working branch to your_branch_name
- click “New pull request”
- change base branch to “development”
- edit description of your changes and WHY your code should be merged
- click “create pull request”
- wait for an admin to approve your request or request further information
CIRN
Wiki Home
CIRN Website
CIRN Research and Workshops
CIRN Monthly Webinars Existing Monitoring Stations
Sampling Goals
Pixel Resolution
Fixed Mounting Platforms
Temporary Towers
FOV and Lenses
Installation Design
Cookbook
Data Processing
Understanding Image Geometries
Photogrammetry
Intrinsic Calibration
GCPs
Extrinsic Calibration
File Naming
Directory Naming
Time Conventions
Common Variable Names
Parallel Processing Issues
Etc
GitHub Help
GitHub Cheat Sheet
CIRN repository help
GitHub Best Practices and GuidelinesGitHub Repository Structure
GitHub Workflow Overview
Using Teams & Roles
Issues
Testing & Review
Code Requirements
General Guidance
Admin
Software Development Life Cycle