Git上传项目完整网站

时间:2016-09-27 05:47:15

标签: php git upload codeigniter-3

我是使用Github的新手。我想在Github.com上的新存储库中上传我的完整网站。但是Github只能上传不超过100个文件,我下载codeigniter-3它有253文件(原版没有我的新文件)。
我可以将我的项目上传到Github吗?

2 个答案:

答案 0 :(得分:4)

这可能是拖放界面的限制。我建议改为熟悉命令行客户端。它比使用网络界面更方便,如果您想从开发机器上对该项目进行认真的工作,那么您无论如何都需要它。

首先将项目克隆到本地目录:

$ git clone https://github.com/YOUR-USERNAME/YOUR-REPOSITORY

然后从项目目录中添加所有文件:

$ git add .
$ git commit -m "initial commit"
$ git push origin master

或者,请考虑使用https://desktop.github.com/

参考:

答案 1 :(得分:2)

GitHub上传文件一步一步。

  1. 现在首先在github上创建帐户。
  2. https://github.com/login

    1. 在您的GitHub帐户中创建存储库。

    2. 通过GIT Clone在项目目录中设置git目录。 使用config。在项目的git clone setup .GIT目录之后。

      示例:## Config git repository ##

    3.   

      git clone https://github.com/username/repository

         ##upload project on GIT##
      
        git add /your-folder
      
         git commit -m 'your first commit'
      
         git push -u origin master
      
      推送成功上传项目后