in /usr/ports
* 2025Q2
I want to switch to 2025Q3 without delete the whole port tree and check it out again.
in https://github.com/freebsd/freebsd-ports there is a new branch 2025Q3
I try:
--> Switched to a new branch '2025Q3'
--> Already up to date. | Nothing has fetched and changed. I go back to 2025Q2 and delete the self created 2025Q3. This hasn't work.
next:
-->remote.origin.url=https://git.freebsd.org/ports.git
remote.origin.fetch=+refs/heads/2025Q2:refs/remotes/origin/2025Q2
branch.2025Q2.remote=origin
branch.2025Q2.merge=refs/heads/2025Q2
--> error: RPC failed; HTTP 504 curl 22 The requested URL returned error: 504
--> fatal: expected 'packfile'
How can I solve this?
git branch
* 2025Q2
I want to switch to 2025Q3 without delete the whole port tree and check it out again.
in https://github.com/freebsd/freebsd-ports there is a new branch 2025Q3
I try:
git -C /usr/ports checkout -b 2025Q3
--> Switched to a new branch '2025Q3'
git pull
--> Already up to date. | Nothing has fetched and changed. I go back to 2025Q2 and delete the self created 2025Q3. This hasn't work.
next:
git config -l
-->remote.origin.url=https://git.freebsd.org/ports.git
remote.origin.fetch=+refs/heads/2025Q2:refs/remotes/origin/2025Q2
branch.2025Q2.remote=origin
branch.2025Q2.merge=refs/heads/2025Q2
git fetch origin 2025Q3
--> error: RPC failed; HTTP 504 curl 22 The requested URL returned error: 504
--> fatal: expected 'packfile'
How can I solve this?