How can I upload fresh code at github?

前端 未结 7 1397
孤街浪徒
孤街浪徒 2021-01-29 19:03

I have a directory with all my coding projects.

I want to upload (correct terminology?) it to GitHub using the command line.

I have already looked at Old questi

7条回答
  •  既然无缘
    2021-01-29 19:20

    git init
    git add .
    git commit -m "Initial commit"
    

    After this, make a new GitHub repository and follow on-screen instructions.

提交回复
热议问题