Skip to content
This repository was archived by the owner on Dec 12, 2025. It is now read-only.

Commit

Permalink
Add simple git workflow and dataflow notes
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiddelkoop committed Jun 5, 2024
1 parent 52f8146 commit f1651a9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit f1651a9

Please sign in to comment.