do you have ssh keys?
ls -al ~/.ssh
If "no such file" then create them
ssh-keygen -t ed25519 -C "<your email>"
save to default file
if group resource set a passphrase
ls -l
cat ~/.ssh/id_ed25519.pub
Identify your public and private key
ssh -T git@github.com
git branch
git remote -v
cd ../
mkdir planets_collab
cd planets_collab
git clone git@github.com/
Remote repository
git push origin main
git pull origin main