At the time I get the status, it prints like this in the console.
$ git status
On branch easy_buy_and_sell
Your branch is up-to-date with 'origin/easy_buy_and_sell'.
Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git checkout -- <file>..." to discard changes in working directory)
        modified:  xyz/src/main/java/com/draglet/domain/order/LocalOrderImpl.java
Untracked files:
  (use "git add <file>..." to include in what will be committed)
        log/
        production/
no changes added to commit (use "git add" and/or "git commit -a")
Now, when I execute the git add ., it staged all the files in the log/ and the production/ folders. What can I do for not staging the untracked files?
 
    