Can I connect git if I downloaded the code as zip

后端 未结 4 1073
感情败类
感情败类 2021-02-15 18:00

I downloaded the latest code of a repositiry as zip but now I want to be able to work with branches too.

Is there anyway I can use the folder as a git repository just l

4条回答
  •  忘了有多久
    2021-02-15 18:06

    It is something like you created a local repo in your m/c and then want to push it to github

    The github repo for your project has already been created on github.

    Either you have created it or has been added as one of the collaborators in your case for downloaded repository code

    When you create a project

    $ rails new app1 --skip-active-record --skip-bundle
    

    and want this to be associated to the repo

    cd to the project folder,

    $ cd app1
    

    and then execute $git init $ git remote add origin git@github.com:analytics/app1.git

    then do

    $git pull origin master
    $git push
    

    So, the local repo has been pushed to the remote github repo

提交回复
热议问题