Skip to content

Commit

Permalink
docs: add diff commands
Browse files Browse the repository at this point in the history
  • Loading branch information
tinovyatkin committed Jan 17, 2025
1 parent 38985b1 commit 7a35039
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions ComfyUI/DEV.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,14 @@ docker run \
comfyui
```

## Getting changes from the container

```sh
git stash --all --include-untracked
git checkout -b my-setup-changes
git stash apply
git add --all
git commit -m 'Getting all my changes'
git archive -o update.zip HEAD $(git diff --submodule=diff --name-only HEAD HEAD^)
```

0 comments on commit 7a35039

Please sign in to comment.