框架代码没有出现在git中?

So, I'm working on a PHP project and I'm using this framework: https://github.com/jonseg/crud-admin-generator

But, when I go to commit the files to my git repo, the only files I see are the ones originally created by me. Why aren't I seeing this framework or the changes I've made to this framework? Why can't I commit any of these files? I'm kind of new at git so I'm sorry if this is an easy one...

I have tried searching for all .git files and removing them, running "rm -fr .git" in that directory, making random changes to files, and committing from the command line.

Do you have a .gitignore file? It could be that the .gitignore file is specifying that Git should ignore the files in the framework.

im sorry to ask this obvious question but .. did you pushed after you commit ?

Because the usual flow of using git is :

  • Clone from github / init empty forlder for git.
  • Add your files with "git add -a" (-a stands for add all files in current folder)
  • commit : git commit -m "my commit message"
  • push : git push origin master

If you don't Add before you commit, it cannot work. if you don't push after you commit, it cannot work.

maybe you can have a look at here for getting started using git : https://git-scm.com/doc

Good luck