I have a case where file I modify does not appear as modified file.
Can i still commit that file?
Can I add file that is listed as unchanged file to changed file? Thanks!
Updates: When I'm trying to add the file, terminal gives such error:
The following paths are ignored by one of your .gitignore files:
folderpath/filename.java
Use -f if you really want to add them.
fatal: no files added
but when I open my .gitignore file:
bin
gen
#built application files
*.apk
*.ap_
# files for the dex VM
*.dex
# Java class files
*.class
# generated GUI files
*R.java
# Mac OS file
.DS_Store
and info/exclude
# git ls-files --others --exclude-from=.git/info/exclude
# Lines that start with '#' are comments.
# For a project mostly in C, the following would be a good set of
# exclude patterns (uncomment them if you want to use them):
# *.[oa]
# *~
I am very sure my folder path and its file name is not included in .gitignore and exclude file