Configuring GitHub [closed]

1

I would like help with how I configure GitHub on my Windows 10 32bit Operating System machine to upload my projects.

    
asked by anonymous 03.08.2017 / 21:13

2 answers

3

Install Git for Windows link

Uploading your project for the first time:

  • Enter the root folder of your project from the command prompt
  • Create the local repository:
    C:\SeuProjeto> git init
  • Adds the files to the local repository:
    C:\SeuProjeto> git add .
  • Confirm all changes as commit:
    C:\SeuProjeto> git commit -m "Meu primeiro commit"
  • Add your remote repository (GitHub)
    C:\SeuProjeto> git remote add origin https://github.com/YOUR-USERNAME/YOUR-REPOSITORY
  • Push / Push all changes to the remote repository (GitHub)
    C:\SeuProjeto> git push origin master
  • Reference

    If you want to work on a project already created in GitHub, see this: link

    Another option for GitHub 'GitHub Desktop' link

        
    03.08.2017 / 21:19
    2

    You can simply install GitHub Desktop and follow the instructions inside it.

        
    03.08.2017 / 21:56