Create repository under RemoteSensingTools
This project is initialized locally. To publish it under https://github.com/RemoteSensingTools:
Option A: GitHub web UI
Go to https://github.com/organizations/RemoteSensingTools/repositories/new
- Or: GitHub → RemoteSensingTools → Repositories → New repository.
Set:
- Repository name:
AtmosTransport - Visibility: Public (or Private)
- Do not initialize with README, .gitignore, or license (we already have them).
- Repository name:
Create the repository, then in your local clone run:
cd /home/cfranken/code/gitHub/AtmosTransport
git remote add origin https://github.com/RemoteSensingTools/AtmosTransport.git
git push -u origin mainOption B: GitHub CLI (gh)
If you have GitHub CLI installed and authenticated:
cd /home/cfranken/code/gitHub/AtmosTransport
gh repo create RemoteSensingTools/AtmosTransport --public --source=. --remote=origin --pushYou need create-repository permission in the RemoteSensingTools organization (admin or member with repo creation).