¿Cómo puedo crear un nuevo proyecto en Github usando bash?

¿Cómo puedo crear un nuevo proyecto en Github usando bash?

Estoy intentando aprender git. ¿Cómo puedo poner el archivo juna.pyen Github en un nuevo proyecto? Estoy trabajando en Ubuntu. Lo intenté

git init

Reinitialized existing Git repository in /home/jaakko/juna/.git/

(base) jaakko@jaakko-Lenovo-IdeaPad-L340-17IWL:~/juna$ git add juna.py

(base) jaakko@jaakko-Lenovo-IdeaPad-L340-17IWL:~/juna$ git commit

On branch master

nothing to commit, working tree clean

Respuesta1

Es posible que después de agregar y confirmar sus archivos en la sucursal local:

$git remote add origin remote

$ git remote -v

ahora puedes insertar datos desde el comando git push

información relacionada