I've created a new repository and committed everything, or so I thought.
I found that there was a .gitignore
in my stylesheets directory. I have removed this and did a git add .
at the root of my project. In the stylesheets directory I now have a .git
file.
When I try to commit I get this:
git commit
On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
modified: client/stylesheets (modified content)
no changes added to commit
How do I commit everything in the client/stylesheets directory?
Thanks in advance for any suggestions :)