Why does git status
say Changed but not updated
but git pull
says Already up-to-date
?
E.g.
$ git st
# On branch develop
# Changed but not updated:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: roles/role-A (new commits)
#
no changes added to commit (use "git add" and/or "git commit -a")
[snowcrash@snow ansible-playbooks]$ git pull
Already up-to-date.