examining history of deleted file

When you want to look at old files you really should know the difference between: svn cat http://server/svn/project/file -r 1234 and svn cat http://server/svn/project/file@1234 The first version looks at the path that is now available as http://server/svn/project/file and retrieves that file as it was in revision 1234. (So this syntax does not work after a … Read more

How to attribute a single commit to multiple developers?

Commit title Commit body Co-authored-by: name <[email protected]> Co-authored-by: name <[email protected]> Supported by GitHub and GitLab Used by others: https://git.wiki.kernel.org/index.php/CommitMessageConventions One problem with this approach is that you can’t create a signed key for this group of devs, so you could essentially add anybody to this list even if they didn’t work on a feature and … Read more