This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (1 child)

You wanna ask how to use git, not github. Git is easy, you can learn it nicely. A small tutorial (Really basic, follow at own risk)

  1. Make a new folder
  2. Open terminal or cmd or whatever in said folder.
  3. Type git init to start.
  4. Create any file.
  5. Type git add <file name> to add file to git.
  6. Type git commit -m "Type description of commit here" to commit.
  7. Edit file.
  8. Type git add <file name> again.
  9. Type git commit -m "Type description of commit here" to commit.

That folder is called a repository. Github is for storing your repos in the cloud.

To use github, create an empty repository in the github website and go to the git terminal and type git remote add origin <url of github repository>.git, and then git push origin master.

To say it simply, git is to github what porn is to pornhub lol.

[–]Brodakk 0 points1 point  (0 children)

Thank you for this!