Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools

When to use "git commit -a -m"?

When to use "git commit -a -m"? and when should I use just "git commit -m"?

1 Answer

Alex Koumparos
seal-mask
.a{fill-rule:evenodd;}techdegree
Alex Koumparos
Python Development Techdegree Student 36,887 Points

Hi brevans26,

As the help page for git commit (git help commit) explains:

Tell the command to automatically stage files that have been modified and deleted, but new files you have not told Git about are not affected.

So this is like doing git add for the files that git is already tracking that you have changed or deleted.

Hope that's clear,

Alex