diff --git a/forking_workflow.md b/forking_workflow.md index 44fcc1f..530067a 100644 --- a/forking_workflow.md +++ b/forking_workflow.md @@ -85,7 +85,7 @@ Now you have access to local, remote (origin), and remote parent (upstream) bran ## 3. Make local changes In your local repository, feel free to make any changes you'd like. For simplicity, you can create a new file `_test.txt` and add some text to it. Once that is saved, remember to `git add` and `git commit` your changes: ``` -git add . && git commit -m "created new file" +git add . && git commit -m "create new file" ``` ### **To do this in VSCode:** diff --git a/test_file.txt b/test_file.txt new file mode 100644 index 0000000..73fda45 --- /dev/null +++ b/test_file.txt @@ -0,0 +1 @@ +some change katherine has made \ No newline at end of file