I'm getting a message when I add the wp-content
folder in git.
Command:
$ git add wp-content/
Answer: Terminated
What could it be? I tried $ git add wp-content/ -f
, but I still get the message.
I'm getting a message when I add the wp-content
folder in git.
Command:
$ git add wp-content/
Answer: Terminated
What could it be? I tried $ git add wp-content/ -f
, but I still get the message.
Git is used for versioning files, not directories. If you still want to use this directory even though it is empty, use a .gitignore file, and edit it to not recognize files inside it in the versioning.
You can find more information about .gitignore in the GitHub Help .