I have a git repository and it is doing something I've never seen before and haven't found a solution anywhere. I initialized with git init
and added everything with git add *
and went on my way now when I try to commit after editing any number of files none are staged for commit so I have to do git add -A
which then stages them all for a commit. Is there a way to skip the git add -A
step? I have used git with Xcode a lot and never have had to move them from not staged to staged while in the terminal.
Is there a paradigm to the git staging area I am missing? How are you supposed to use it?