|
From: Mark W. <ma...@kl...> - 2021-11-17 11:29:26
|
Hi valgrind hackers, We moved the website into git: https://sourceware.org/git/valgrind-htdocs.git And the website itself is now hosted by sourceware.org. If you have commit access to the main valgrind.git repo you should also have commit access to the valgrind-htdocs.git repository (through ssh). The website https://valgrind.org/ updates immediately when you push new commits to valgrind-htdocs.git. This might be a good time to review the Developers page: https://valgrind.org/info/developers.html and see if you are mentioned, update your bio, etc. Please try and update it and ask if you have any problems. Also please point out any documentation (either on the website or in the main repo) that might need updating for the new way we update the website. Thanks, Mark |
|
From: Paul F. <pj...@wa...> - 2021-11-17 22:13:11
|
On 11/17/21 12:29, Mark Wielaard wrote: > Hi valgrind hackers, > > We moved the website into git: > https://sourceware.org/git/valgrind-htdocs.git > And the website itself is now hosted by sourceware.org. > > If you have commit access to the main valgrind.git repo you should also > have commit access to the valgrind-htdocs.git repository (through ssh). > > The website https://valgrind.org/ updates immediately when you push new > commits to valgrind-htdocs.git. > > This might be a good time to review the Developers page: > https://valgrind.org/info/developers.html > and see if you are mentioned, update your bio, etc. > Please try and update it and ask if you have any problems. > > Also please point out any documentation (either on the website or in > the main repo) that might need updating for the new way we update the > website. > > Thanks, Hi Mark I got this from my first attempt at a push: paulf> git push Enumerating objects: 9, done. Counting objects: 100% (9/9), done. Delta compression using up to 4 threads Compressing objects: 100% (5/5), done. Writing objects: 100% (5/5), 481 bytes | 481.00 KiB/s, done. Total 5 (delta 4), reused 0 (delta 0), pack-reused 0 remote: error: unable to unlink old 'docs/manual/mc-manual.html': Permission den ied To ssh://sourceware.org/git/valgrind-htdocs.git 59967f7..e2d0a33 main -> main euler:/home/paulf/scratch/valgrind-htdocs And similarly a second push paulf> git push Enumerating objects: 9, done. Counting objects: 100% (9/9), done. Delta compression using up to 4 threads Compressing objects: 100% (5/5), done. Writing objects: 100% (5/5), 692 bytes | 692.00 KiB/s, done. Total 5 (delta 4), reused 0 (delta 0), pack-reused 0 remote: error: unable to unlink old 'docs/manual/mc-manual.html': Permission den ied remote: error: unable to unlink old 'info/developers.html': Permission denied remote: error: unable to unlink old 'info/platforms.html': Permission denied To ssh://sourceware.org/git/valgrind-htdocs.git e2d0a33..8dab11d main -> main If I make a separate clone, my changes are there. A problem with the git hooks? A+ Paul |
|
From: Mark W. <ma...@kl...> - 2021-11-17 23:18:10
|
Hi Paul, On Wed, Nov 17, 2021 at 11:13:00PM +0100, Paul Floyd wrote: > I got this from my first attempt at a push: > > paulf> git push > Enumerating objects: 9, done. > Counting objects: 100% (9/9), done. > Delta compression using up to 4 threads > Compressing objects: 100% (5/5), done. > Writing objects: 100% (5/5), 481 bytes | 481.00 KiB/s, done. > Total 5 (delta 4), reused 0 (delta 0), pack-reused 0 > remote: error: unable to unlink old 'docs/manual/mc-manual.html': Permission > denied > To ssh://sourceware.org/git/valgrind-htdocs.git > 59967f7..e2d0a33 main -> main > [...] > A problem with the git hooks? Yes, sorry, it didn't set the file permissions correctly. It should now make sure all files can be updated by someone in the valgrind group. Cheers, Mark |