How do I pull my project from github?

后端 未结 6 903
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-29 19:39

I have a project on github that I have been working on before. However, I wiped out my computer and I am wondering which git command should I invoke under my username to checko

6条回答
  •  再見小時候
    2021-01-29 20:08

    Git clone is the command you're looking for:

    git clone git@github.com:username/repo.git
    

    Update: And this is the official guide: https://help.github.com/articles/fork-a-repo

    Take a look at: https://help.github.com/

    It has really useful content

提交回复
热议问题