githubteacher / github-for-developers-sept-2015

practice repo for the Sept 29-30 GitHub for Developers class
12 stars 36 forks source link

Can have work with multiple files or folders when adding / committing etc ? #712

Closed Gurinder-Gill closed 8 years ago

jaw6 commented 8 years ago

Yes, you can use git add to add multiple files to the stage. You can use patterns to match multiple files in one git add command, for example:

git add R*

Will add all files beginning with a capital "R" to the stage at once.