-
Notifications
You must be signed in to change notification settings - Fork 1
Git Workflow
rdunker edited this page Aug 4, 2021
·
3 revisions
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.
First we load new changes:
git pull
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.
After making the changes in the image, they can be commited in the Git-Browser and then be pushed from outside:
git push