How to upload a local directory as github repo
本问题已经有最佳答案,请猛点这里访问。
我是Git的新手,我在本地有一个项目,我想把它放在GitHub的存储库中。
我知道如何实现这一点,因为GitHub只有"上传文件"而不是类似于上传文件夹的选项。
从这里下载Git。
在Github创建一个repo,它将为您提供一个可以运行的命令列表,用于将项目上载到Github存储库中:
1 2 3 4 5 6 | cd"your project directory" git init git add . git commit -m"first commit" git remote add origin"your github url" git push -u origin master |
您可以单击"上载文件",然后拖放该文件夹,该文件夹中的所有文件都应被添加(它在Google Chrome上对我有效)。
。
但这不是推荐的方法,最好的方法是创建本地Git回购,然后将其推送到Github(请参阅Sebastian Berge的答案)。