tangled
alpha
login
or
join now
whitequark.org
/
git-pages
10
fork
atom
[mirror] Scalable static site server for Git forges (like GitHub Pages)
10
fork
atom
overview
issues
pulls
pipelines
Clear git metadata from PATCH'd manifests.
whitequark.org
2 months ago
96f210d2
a4bfa823
+3
1 changed file
expand all
collapse all
unified
split
src
update.go
+3
src/update.go
···
182
182
// `*Manifest` objects, which should never be mutated.
183
183
newManifest := &Manifest{}
184
184
proto.Merge(newManifest, oldManifest)
185
185
+
newManifest.RepoUrl = nil
186
186
+
newManifest.Branch = nil
187
187
+
newManifest.Commit = nil
185
188
if err := ApplyTarPatch(newManifest, reader, parents); err != nil {
186
189
return nil, err
187
190
} else {