Skip to content

Git Workflow

rdunker edited this page Aug 4, 2021 · 3 revisions

Git Workflow

We use the Git-Browser of Squeak to navigate through the repository, to load commits into the image and to save changes as commits. Pulling and pushing changes can also be done outside of Squeak with the common Git-Tools.

Pulling

First we load new changes:

git pull

Branches

To work on a remote branch, we first have to check it out locally:

git checkout <branch-name>

Then we can change to this branch in the Git-Browser of Squeak and check out objects.

Commit and push

After making the changes in the image, they can be commited in the Git-Browser and then be pushed from outside:

git push
Clone this wiki locally