From f1651a9b8fd55b470f5aef4042a8a39d43a0059b Mon Sep 17 00:00:00 2001 From: Timothy Middelkoop Date: Wed, 5 Jun 2024 16:29:50 -0500 Subject: [PATCH] Add simple git workflow and dataflow notes --- Notes.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Notes.md b/Notes.md index a09a76a..7c39855 100644 --- a/Notes.md +++ b/Notes.md @@ -194,6 +194,12 @@ git status ### Git Workflow +The Git dataflow goes from your brain, to the editor, click save to disk, add to git staging/index, commit to local repository, push to remote repository, the world sees it. + +The Git workflow is to pull from remote repository, merge new commits, work on things, check the changes, stage and commit, and push to remote repository. + +Git workflow details: + * Fetch any changes from the remote repository (Gitea): `git fetch` * Check the status of your repository: `git status` * If there are changes from the remote repository: