Search code examples
phpgituploadcodeigniter-3

Git upload project full site


I am new for using Github. I want upload my full site in new Repository in Github.com. But Github just can upload not more than 100file, and I'm download codeigniter-3 it's have 253file (original without my new file).
Can I upload my project in to Github?


Solution

  • This is likely a limitation of the drag and drop interface. I'd suggest to get familiar with the command line client instead. It's much more convenient than using the web interface and you'll need it anyway if you want to do serious work on that project from your dev machine.

    First clone your project to a local directory:

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

    Then from your project directory, add all the files:

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

    Alternatively, consider using https://desktop.github.com/

    Reference: