Skip to content
Open

SymPO #8245

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions git_command
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# 1. 查看两个分支的差异(确认要合并的内容)
git diff main..new_althorithm/sympo
# 2. 确认当前在哪个分支
git branch
# 3. 切换 分支
git checkout new_althorithm/sympo
git status # 确认没有未提交的修改
# 如果还有修改,先提交:
git add .
git commit -m "feat: 添加 SymPO 算法"

# 2. 推送到远程(关键!)
git push origin new_althorithm/sympo
Loading