1
I would like a help of how I do to set up Github on my Windows 10 32bit Operating System machine to move up my projects.
1
I would like a help of how I do to set up Github on my Windows 10 32bit Operating System machine to move up my projects.
3
Install Git for Windows https://git-scm.com/downloads
Moving up 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 on Github, check this out: https://help.github.com/articles/cloning-a-repository/
Another option for Github 'Github Desktop' https://desktop.github.com/
I added more details to the reply @Diego
Hello Edvaldo. I will try to configure the way you exemplified and after I write if I could.
Diego remember to create the repository first on the Github website.
Branches: master, develop, Feature, release, Hotfix. Git Flow
Edvaldo you have skype?
Hello @Diego, I do. Check my profile:
2
You can simply install the Github Desktop and follow the instructions within it.
Hello Igor, can you explain to me the steps I must follow...?
@Diego has no secret. Just install and follow what software tell you to do. He will teach you to use it himself. You don’t need to use command lines or anything in this. It will all be with graphical user interface.
Perfect, I’ll try! Thanks for the info
Browser other questions tagged git github
You are not signed in. Login or sign up in order to post.
vc ta talking about git or github software?
– LeAndrade
Hello Sorry. Git with Github.
– Diego
Moderators and Mr @LINQ Help Center I see that this question is within the purpose of stackoverflow. See: 1 - common tools among programmers 2 - practical and well-defined problems concerning software development 3 - theoretical doubts about concepts and practices applied to software development
– Edvaldo Silva