github下载的zip如何与远程仓库建立关联-How to clone git repository from its zip

unzip .zip
cd 
git init
git add .
git remote add origin https://github.com//.git
git remote update
git checkout master

参考:https://stackoverflow.com/questions/15681643/how-to-clone-git-repository-from-its-zip

你可能感兴趣的:(github下载的zip如何与远程仓库建立关联-How to clone git repository from its zip)