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
Post a Comment