Delphi RES files and Git

前端 未结 6 1489
无人及你
无人及你 2021-02-04 00:19

I have a big project written in Delphi and I want to manage its sources using Git. I created Git repository, which includes my application\'s sources and 3rd party components. A

相关标签:
6条回答
  • 2021-02-04 00:33

    I keep my project RES files in git (those that match the name of the dpr).

    I believe the only reason the project RES file would change every time you build is if you have increment build number set, which to me either means you need to keep the res in source control or you don't care about the build number so you should turn off that option.

    I do also have RES files that I build from RC, which change every compile, so I have a gitignore for *.res and I then add git add -f project.res for the project RES files

    0 讨论(0)
  • 2021-02-04 00:36

    Welcome to the club. The application .res file in Delphi is a pain in the lower back for everybody using source control. You want to use auto-inc-buildnumber but it messes up your scource control. What I have done is

    • split the icon and the version resources like this:

      {$R *_icon.res}

      {$R *._version.res}

    • disable auto inc of the buildnumber

    • add a pre-build event to the project that

      • increments the build number in a .ini file corresponding the project
      • generates a .rc file with the version info from the .ini file
      • compiles a .res file from the .rc file
    • add the *_icon.res file to source control, it never changes so this is safe

    • add the .ini file with the version info to source control, it is a text file so it is easy to diff

    The tool I have written for generating the version .res file is free software, available here and also from OSDN

    0 讨论(0)
  • 2021-02-04 00:43

    By definition, RES files are compiled RC files. So ideally you should ignore all RES files and commit only RC changes. If it happened somehow that you don't have an RC source for some particular RES file, then add only this "orphan" RES file to git - such files shouldn't change from build to build (cause there is no RC file to generate them from). If for some strange reasons (Delphi, huh) such RES files do change, then you are doomed.

    Bottom line: RES files are compilation targets - no different from other binaries (obj,exe,etc)

    0 讨论(0)
  • 2021-02-04 00:43

    I don't know GIT, but under SVN I simply only "SVN ADD" the few that matter, and not the automatically generated ones. Since unversioned files are excluded from diffs, that's taken care off too then.

    0 讨论(0)
  • 2021-02-04 00:52

    It's strongly advised to disable the "Auto increment build number" in the project settings, with any kind of version control system. This way it's 'safe' to add the .res files to the repository.

    I have been searching for a long time for a way to auto-update the build number in the version info in the project's .res file, but the best thing is to update an extra .rc with the version info. In practice though, I generally update the build number to the current subversion revision number only right before the final build for a release of the binaries.

    0 讨论(0)
  • 2021-02-04 00:59

    Could you:

    • ignore all .res files
    • generate the .res files that can be generate (compiling the resources script .rc files)
    • add only the .res files without .rc files to generate them: if you had specified in a .gitignore that they are to be ignored, then adding them is ok: they won't show up in the diff.
    0 讨论(0)
提交回复
热议问题