gpt4 book ai didi

将文件从一个存储库复制到另一个存储库的 github 操作

转载 作者:行者123 更新时间:2023-12-02 04:41:10 28 4
gpt4 key购买 nike

我的公司创建了一种在环境之间移动文件的复杂方法,现在我们希望将某些构建的 JS 文件(已转换和缩小)从一个 github 存储库移动到另一个。使用 github 操作可以实现这一点吗?

最佳答案

最简单的选择是克隆目标存储库,将文件复制到目标存储库中,使用 git 命令行暂存文件,然后提交它们。在脚本步骤中添加以下代码

run: |
git clone https://.:${{ secrets.GITHUB_TOKEN }}@github.com/project target
rm everything but the .git directory
copy source\files target
cd target
git add .
git diff-index --quiet HEAD || git commit -m "Automatic publish from github.com/project"
git push target master

关于将文件从一个存储库复制到另一个存储库的 github 操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59408320/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com