Upgrading from a previous commit (not version) #3139
Unanswered
emilianomarti
asked this question in
Q&A
Replies: 1 comment
-
|
I think the easiest way is to create a branch and point it to that specific commit, then rebase to it and delete it afterwards. Something like this: git branch temp <hash of the commit>
git checkout main
git rebase temp
git branch -d temp |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
Is it possible to upgrade to the latest commit (not version)? I do have the latest version (0.14.4), so when I follow the instructions in Upgrading from a previous version it tells me "Current branch main is up to date."
Is there a way to rebase to the latest (or a particular, newer) commit?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions