将脚本和 auto-git.sh 推送到远程仓库并创建 Pull Request
将脚本和 auto-git.sh 推送到远程仓库并创建 Pull Request
本文档将引导你将编写完的脚本和 auto-git.sh 文件推送到远程 yun-test 仓库,并在自己命名的分支中创建 Pull Request 合并到 master 分支。
步骤:
-
设置远程仓库地址
remote_repo='https://github.com/yourusername/yun-test.git' -
设置分支名称
branch='yourname' -
将脚本和 auto-git.sh 添加到本地仓库
git add script.sh auto-git.sh -
提交本地仓库的改动
git commit -m 'Add script.sh and auto-git.sh' -
创建并切换到自己姓名命名的分支
git checkout -b $branch -
推送分支到远程仓库
git push origin $branch -
创建 Pull Request 合并到 master 分支
# 使用 curl 命令发送 POST 请求到 GitHub API curl -X POST -H 'Authorization: token your_access_token' \ -H 'Content-Type: application/json' -d '{\n "title": "Pull request from yourname",\n "head": "yourname",\n "base": "master"\n}' 'https://api.github.com/repos/yourusername/yun-test/pulls'
注意:
- 请将代码中的
yourusername、yourname和your_access_token替换为你自己的信息。 - 在运行脚本之前,请确保已经在本地仓库的根目录下初始化了 Git,并且已经设置了远程仓库的地址。
- 你也可以使用 GitHub 网站上的界面创建 Pull Request。
原文地址: https://www.cveoy.top/t/topic/hOSM 著作权归作者所有。请勿转载和采集!