I would like help with how I configure GitHub on my Windows 10 32bit Operating System machine to upload my projects.
I would like help with how I configure GitHub on my Windows 10 32bit Operating System machine to upload my projects.
Install Git for Windows link
Uploading your project for the first time:
C:\SeuProjeto> git init
C:\SeuProjeto> git add .
C:\SeuProjeto> git commit -m "Meu primeiro commit"
C:\SeuProjeto> git remote add origin https://github.com/YOUR-USERNAME/YOUR-REPOSITORY
C:\SeuProjeto> git push origin master
If you want to work on a project already created in GitHub, see this: link
Another option for GitHub 'GitHub Desktop' link
You can simply install GitHub Desktop and follow the instructions inside it.