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
  • 5,620
  • 11
  • 51
  • 103

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
  • 297,002
  • 52
  • 306
  • 350
  • isn't "git init" for initializing a local repository? If not - how to do that on github? – Igor May 19 '16 at 17:34