Version-Control-Git-Teaching-Notes

4.4 bio Repository

Solution

If needed, move out of the recipes folder:

$ cd ..

Create a new folder called bio and ‘move’ into it:

$ mkdir bio
$ cd bio

Initialise git:

$ git init

Create your biography file me.txt using nano or another text editor. Once in place, add and commit it to the repository:

$ git add me.txt
$ git commit -m "Add biography file"

Modify the file as described (modify one line, add a fourth line). To display the differences between its updated state and its original state, use git diff:

$ git diff me.txt

Episode 5 Image 1