This lesson covers the basics of git for version control
This lesson is for the first day of MSSE bootcamp
TO make a commit ("version" or "checkpoint") of your file, follow this procedure:
- make changes to the project that you would like to keep.
- When you have your changes, tell
GITyou are ready to creat checkpoint of the file using thegit add Filenamecommand. - create a checkpoint of your file using
git commit -m "Message about what you did
Features should be developed on branches. to switch to a branch use git switch (-c)