forked from swoole/swoole-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c7e9cd
commit 7620bb2
Showing
1 changed file
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,11 +34,10 @@ jobs: | |
- name: push to gitee | ||
run: | | ||
set -x | ||
# ssh -T [email protected] | ||
git fetch origin -a | ||
ssh -T [email protected] | ||
git remote add gitee [email protected]:jingjingxyk/swoole-cli.git | ||
git fetch gitee -a | ||
git push gitee --all --force | ||
git push -f gitee --all | ||
# 求差集 (gitee 存在的分支,github 不存在分支,执行删除操作) | ||
# 默认输出三列,第一列包含文件1独有的行,第二列包含文件2独有的行,第三列包含两个文件共有的行。列之间由制表符分隔 | ||
|