You can accomplish that with a few git add commands that specify the files you want to track, followed by a git commit: $ git add *.c $ git add LICENSE $ git commit -m 'initial project version' We’ll go over what these commands do in just a minute.
↧