0

I'm looking at this link, which referencing this link as the first step.

My question would be: can I do the first step from the Terminal (command prompt)?

Thank you.

Igor
  • 4,957
  • 9
  • 45
  • 88

1 Answers1

0

You can create an (empty) project using git init:

mureinuj@computer ~/src/git $ git init myproject
Initialized empty Git repository in /home/mureinik/src/git/myproject/.git/

From there on, it's just pushing the (now existing) project into GitHub, as described by the link you provided.

Mureinik
  • 277,661
  • 50
  • 283
  • 320
  • isn't "git init" for initializing a local repository? If not - how to do that on github? – Igor May 19 '16 at 17:34