Push existing project into Github

后端 未结 18 755
天涯浪人
天涯浪人 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 04:56

    First, make a new repository on Github with your project name.Then follow the below steps..

    1)git init
    2)git add *
    3)git commit -m "first commit"
    4)git remote add origin https://github.com/yuvraj777/GDriveDemo.git
    5)git push -u origin master
    

提交回复
热议问题