2

I am using Tower to work with a Git repository. My problem is that when I add new files locally they are not showing up in Tower. Anyone know how to fix this?

user229044
  • 232,980
  • 40
  • 330
  • 338
JJ Nold
  • 435
  • 2
  • 7
  • 13
  • Simply interacting with the Tower window is enough to get it to refresh the state for me. Could you add more detail? I created a new file and added it from the command line, and Tower reflected the changes as expected. – user229044 Oct 25 '11 at 18:09
  • I'm not sure how much more specific I can be. I created some files within sub-directories of my local repository. These files are not reflected in Tower. I have tried refreshing with no luck. – JJ Nold Oct 25 '11 at 18:35
  • Yes, they were hidden in my .gitignore. Good call, thanks! – JJ Nold Oct 25 '11 at 20:51

1 Answers1

2

They are likely hidden by a rule in a .gitignore file. Do you see them when you do git status from the command line? If not, check .gitignore.

user229044
  • 232,980
  • 40
  • 330
  • 338