The objective is to commit a git branch. The output of \"git status\" for the branch is:
On branch zeromq_new
Your branch is up to date with
Solution involves removing .git/ from the directories with the "modified content, untracked content" label, removing the --cached filed from those directories, and then running git add
on those directories once again.
Step-by-step solution:
git rm -rf --cached log4cplus/ && git rm -rf --cached ../lib/notifications/cppzmq
Happy coding.