You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
graph TD;
A[开始] --> B[获取远程所有URL];
B --> C[读取本地成功记录];
C --> D[对比并筛选未推送的URL];
D --> E[推送筛选后的URL];
E -->|成功| G[记录成功URL到日志];
E -->|失败| H[结束];
G --> A;
H --> A;