https://github.com/jessehouwing/ppt-diffmerge
A little commandline tool to start PowerPoint in merge mode.
https://github.com/jessehouwing/ppt-diffmerge
binary-diffing diff git merge powerpoint
Last synced: 16 days ago
JSON representation
A little commandline tool to start PowerPoint in merge mode.
- Host: GitHub
- URL: https://github.com/jessehouwing/ppt-diffmerge
- Owner: jessehouwing
- License: mit
- Created: 2022-02-01T23:35:05.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2026-02-24T15:44:42.000Z (18 days ago)
- Last Synced: 2026-02-24T20:28:51.581Z (18 days ago)
- Topics: binary-diffing, diff, git, merge, powerpoint
- Language: C#
- Homepage:
- Size: 158 KB
- Stars: 11
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# PowerPoint Diff/Merge
A little commandline tool to start PowerPoint in merge mode.
```
ppt-diffmerge-tool "$LOCAL" "$REMOTE" "$BASE" "$RESULT"
```
## Git config
To register this tool in git, add these sections to your git config:
```
[difftool "pptdiffmerge"]
name = PowerPoint Diff tool
cmd = C:/ppt-diffmerge/ppt-diffmerge-tool/bin/Debug/ppt-diffmerge-tool.exe "$LOCAL" "$REMOTE"
binary = true
[mergetool "pptdiffmerge"]
name = PowerPoint Merge tool
trustExitCode = false
keepBackup = false
cmd = C:/ppt-diffmerge/ppt-diffmerge-tool/bin/Debug/ppt-diffmerge-tool.exe "$LOCAL" "$REMOTE" "$BASE" "$RESULT"
```
Then register the file extensions for PowerPoint by setting the merge tool attributes in your `.gitattributes`:
```
*.ppt binary diff=pptdiffmerge merge=pptdiffmerge
*.pptm binary diff=pptdiffmerge merge=pptdiffmerge
*.pptx binary diff=pptdiffmerge merge=pptdiffmerge
```