-
I have projects that contain a number of subsheets in K6, i want to create a schematic diff of every sheet from the current state to HEAD-1. the project layout is: I made a script that finds all sheets and writes them into a kibot.yaml file from a template.
template_diff:
but this just diffs the found subsheet as the new sheet to the main sheet like this: (red is the main sheet, green the subsheet) when i define old with the same name as the subsheet i have in new, kibot diffs the same files against eachother (wich would be the expected behaviour of course).
How do I diff 2 subsheets from different commits against eachother? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I found what is was looking for, schematic diffs are generated with the kicad-diff.py script. the command for it is build by out_diff.py.
The correct layout is build. kibot seems to be missing the --all_pages option. I will make a issue for the option to be enabled. |
Beta Was this translation helpful? Give feedback.
-
Hi @harm363 ! |
Beta Was this translation helpful? Give feedback.
I found what is was looking for, schematic diffs are generated with the kicad-diff.py script. the command for it is build by out_diff.py.
when i manually build the schematic diff:
The correct layout is build. kibot seems to be missing the --all_pages option. I will make a issue for the option to be enabled.