Start with the command:
git init
then use this command to see the state of the git
git log
then select the project (I suggest it is a folder that you will upload where the project is)
git add Programador
later with this command, the project status
git status
Then you create a commit and add the comment like this:
git commit "proyecto"
You will see the status of the git again to confirm that everything is correct with the command
git status
but first of all add the login information of your github like this:
git config --global user.name "user"
git config --global user.email "[email protected]
You select the repo (your name)
git romote add Programador
https://github.com/gilbertoquinteroA/proyectoprogramador.git
and with this command you send it to your repo on github
git push remoto master
Y Ready, if you have a problem comment and you can also see more information in the help of github:
help github