On Thu, Jun 16, 2016 at 01:07:23PM -0700, Eliot Miranda wrote: > Hi All, > > so after fixing "git remote get-url origin" to fail over to "git remote > show origin | filter and munge" the culture shock of "git commit -a" (git > commit does nothing ?!?!?)
"git commit" will commit anything that has been "git add"ed to the index. -a is a convenience to automatically stage files that have been modified. HTH, Alistair
