Push existing project into Github

后端 未结 18 981
天涯浪人
天涯浪人 2020-12-04 04:25

I have a folder with my project sources. How I can push this project into Github\'s repository?

I tried using this steps:

  1. I created empty repository o
18条回答
  •  忘掉有多难
    2020-12-04 05:04

    In summary;

    git init
    git status
    git add "*"
    git commit -m "Comment you want"
    git remote add origin  https://link
    git push  -u origin master
    

    I would like to share a source with you so that you learn about Git more easily.

    https://try.github.io/levels/1/challenges/1

提交回复
热议问题