0
How to Put my code to Github and run it using Terminal emulators??
2 Antworten
0
Open terminal and add the foowing commands:
git init
git add .(Adds full repository)
git commit -m "commit name"
git remote add origin https://github.com/username/repositiry.git
git push -u origin master
0
That's all?....so where do i paste my code source code?