Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用git archive命令,我可以在源代码中插入文本,例如:如果代码有字符串
git archive
# $Format:%cd$
该字符串被提交日期替换。
使用 pyinstaller 和规范文件,我可以做出类似的事情吗?(在构建过程中更新字符串)
也许一个解决方案是一个make文件
# makefile # update some string with git export git archive ... # pyinstaller in output directory of git export pyinstaller file.spec
但是,我尝试使用 pyinstaller 搜索直接解决方案。