I am trying to add some files to the staging area. But git isn't responding. What am I doing wrong?
This is what I get when I am querying for the current status
(web) roy@desktopL:~/Workspace/kpr-admin-db$ git status
On branch master
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
deleted: .~lock.callLog.csv#
modified: db.sqlite3
modified: dbaccess/models.py
modified: dbaccess/models.pyc
modified: volunteers.csv
Untracked files:
(use "git add <file>..." to include in what will be committed)
dbController.py
no changes added to commit (use "git add" and/or "git commit -a")
When I'm trying to add
(web) roy@desktopL:~/Workspace/kpr-admin-db$ git add *
The following paths are ignored by one of your .gitignore files:
dbController.pyc
Use -f if you really want to add them.
fatal: no files added
Any help is appreciated. Thanks.