How can i upload A CS50 project To Github ? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 3

How can i upload A CS50 project To Github ?

Hello sololearners šŸ˜ƒ, I'm trying to send my project0 *search* to branch in my github account but i don't know the commands that i must write at all.

10th Sep 2020, 7:48 PM
Yousef Eabitan
Yousef Eabitan - avatar
1 Resposta
+ 2
The basic steps are: 1. Create a git repository on github. 2. Install git on your computer if you don't yet have it. 3. Clone the the github repository on your computer. 4. Put all your project files in the directory of your local git repository. 5. git add all your files and commit them to your "master" branch. 6. Upload it with a command like: git push origin master A lot of the steps should be explained in detail at: https://www.youtube.com/watch?v=yXT1ElMEkW8 This probably won't teach you want you want to learn but a quicker way to get files up is to commit directly in github's website. You can upload the files directly there and it prompts you for a commit message.
10th Sep 2020, 8:21 PM
Josh Greig
Josh Greig - avatar