git add - Git adding "unchanged" files to the stage -


for project i'm working on, want use:

git add . -a 

to add files stage. problem git thinks these files unchanged last commit, ignored. however, changed file, git still sees file unchanged.

how can "forcefully" add single file repository?

check .gitignore file there must pattern matching file excluding file being staged. or can use git add . -f forcely add these files.


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -