mohamed@mohamed:~/Projects/skyrocket$ git status
On branch dev/SMMWEB-36
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: config/puppet/modules/apt (new commits)
modified: config/puppet/modules/augeas (new commits)
modified: config/puppet/modules/concat (new commits)
modified: config/puppet/modules/elasticsearch (new commits)
modified: config/puppet/modules/file_concat (new commits)
modified: config/puppet/modules/git (new commits)
modified: config/puppet/modules/php (new commits)
modified: config/puppet/modules/postgresql (new commits)
modified: config/puppet/modules/redis (new commits)
modified: config/puppet/modules/stdlib (new commits)
modified: config/puppet/modules/vcsrepo (new commits)
Untracked files:
(use "git add <file>..." to include in what will be committed)
.idea/copyright/
config/puppet/modules/blackfire/
config/puppet/modules/inifile/
dump.rdb
keys.dev.pub
keys.tags.pub
no changes added to commit (use "git add" and/or "git commit -a")
I do not know what (new commits) does mean? I do not want to commit these files. I tried to do
$ git checkout -- .
What if i put config/puppet/* to gitignore file then updated the cache as following
$ git rm --cached -r .
will this delete these files from repo. after pushing or merging with other branches?