35 lines
1.2 KiB
Markdown
35 lines
1.2 KiB
Markdown
---
|
|
tags:
|
|
aliases:
|
|
date: 2025-12-08
|
|
time: 14:39:38
|
|
description:
|
|
---
|
|
`git pull` 的時候發生錯誤:
|
|
```shell
|
|
╰─ git pull
|
|
remote: Enumerating objects: 1678, done.
|
|
remote: Counting objects: 100% (1678/1678), done.
|
|
remote: Compressing objects: 100% (543/543), done.
|
|
remote: Total 1678 (delta 1038), reused 1649 (delta 1009), pack-reused 0 (from 0)
|
|
Receiving objects: 100% (1678/1678), 15.66 MiB | 6.67 MiB/s, done.
|
|
Resolving deltas: 100% (1038/1038), done.
|
|
From github.com-logi:RobotRunTeam/AutoServer
|
|
+ e30ee52...a30d519 main -> origin/main (forced update)
|
|
hint: You have divergent branches and need to specify how to reconcile them.
|
|
hint: You can do so by running one of the following commands sometime before
|
|
hint: your next pull:
|
|
hint:
|
|
hint: git config pull.rebase false # merge
|
|
hint: git config pull.rebase true # rebase
|
|
hint: git config pull.ff only # fast-forward only
|
|
hint:
|
|
hint: You can replace "git config" with "git config --global" to set a default
|
|
hint: preference for all repositories. You can also pass --rebase, --no-rebase,
|
|
hint: or --ff-only on the command line to override the configured default per
|
|
hint: invocation.
|
|
fatal: Need to specify how to reconcile divergent branches.
|
|
```
|
|
|
|
|
|
# 參考來源 |