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
Ran the upgrade as shown here: https://docs.gitea.io/en-us/install-from-source/ to upgrade to master, without checking out to any version. git branch confirms master branch. But git show displays commit b04a1d9d639a285db6c3fb9fd675ccb22a04fd14 which is an old commit from April 1st.
Now I did a git fetch && git pull in $GOPATH/src/code.gitea.io/gitea, so it updated to the newest commit. Then I ran go get -d -u code.gitea.io/gitea
Is this a gitea or go bug?
Workaround
cd "$GOPATH/src/code.gitea.io/gitea"
git fetch && git pull
go get -d -u code.gitea.io/gitea
TAGS="bindata" make generate build
The text was updated successfully, but these errors were encountered:
go get -d -u code.gitea.io/giteashould download the most recent version of https://github.com/go-gitea/gitea
There are some cases where it would behave differently, but those are generally limited to using modules or other development.
I ran the following, moving GOPATH to a tmp location for testing
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs during the next 2 weeks. Thank you for your contributions.
[x]
):Description
Ran the upgrade as shown here: https://docs.gitea.io/en-us/install-from-source/ to upgrade to master, without checking out to any version.
git branch
confirmsmaster
branch. Butgit show
displayscommit b04a1d9d639a285db6c3fb9fd675ccb22a04fd14
which is an old commit from April 1st.Now I did a
git fetch && git pull
in$GOPATH/src/code.gitea.io/gitea
, so it updated to the newest commit. Then I rango get -d -u code.gitea.io/gitea
Is this a gitea or go bug?
Workaround
The text was updated successfully, but these errors were encountered: