1. Document your work and email to your instructor
2. Access your alpine VM via ssh or locally via console.
3. Install bash and vim with apk add bash and apk add vim.
4. Install Git using apk add git
5. Create a directory named activity1
6. Initialize Git using git init
7. To check the status of the repository use git status and to add a file in the repository history use git add (to simulate you can create a file first)
8. To commit the changes in the repository use git commit -m "Your commit message"