Adding files in git

You have to add files to git with:

git add .

This will add all new files. Command

git commit -a -m '....'

with add only already tracked and changed files and commit them with given message.

Bosko Ivanisevic wrote:

You have to add files to git with:

git add .

This will add all new files. Command

git commit -a -m '....'

with add only already tracked and changed files and commit them with given message.

On Apr 8, 9:02�am, P�l Bergstr�m <rails-mailing-l...@andreas-s.net>

Thanks :slight_smile: