49

My .gitignore file looks like:

html/
cache/
resources/
# Temp files often created by editors
*.~

I know wish to start tracking a specific directory in html, so I add `!html/support/

html/
cache/
resources/
# Temp files often created by editors
*.~
# Track support
!html/support/

After doing so, however, Git still doesn't seem to track html/support/ and all its children.

How do I add a previously ignored directory to Git repository?

1
  • git doesn't track directories. It tracks files, and only the ones you tell it to. You have to specifically tell it to start tracking something with git add ....
    – twalberg
    Apr 25, 2014 at 16:32

3 Answers 3

81

Not ignoring doesn't mean tracking.

Just use

git add html/support/

at the root of your git repository.

If the file is still ignored, though, you can use git add -f to force adding it (this will not modify the .gitignore file, just allow one little exception) :

git add -f html/support/
4
  • Thanks blue, For my example, would that be git add html/support? Apr 25, 2014 at 14:56
  • Yes, it would be that.
    – blue112
    Apr 25, 2014 at 14:56
  • 2
    Do you have to restart git or something after changing .gitignore? When I try to add the directory, I get The following paths are ignored by one of your .gitignore files: html/support. Use -f if you really want to add them. fatal: no files added. Apr 25, 2014 at 14:58
  • @user1032531 - use the -f option, as suggested, when adding the files. The message you're seeing just means the repository is still set up to ignore the directory. As a corollary to blue112's answer, you can still forcefully add files to be tracked in the repo even if they are considered as ignored.
    – Yawar
    Apr 25, 2014 at 15:42
1

Your .gitignore should add this line:

!html/support/**
0
0

You can simply go to the Directory of the File where .gitignore file is located. This File contains all the files that are ignored. You can simply remove the file listing and save it. Then Refresh your project. Then you will be able to commit those files.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.