There was an error updating. If you have uncommited changes in #643
-
When i do a manual update (or try to) i get this and not sure what to do.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
It is described in the error message: "If you have uncommited changes in '/home/stefan/.oh-my-bash', please commit, stash or discard them and retry updating." The contents of the oh-my-bash repository is managed by Git. If you directly modify the files of Oh My Bash, you need to tell what to do with that change to Git. There are options:
|
Beta Was this translation helpful? Give feedback.
-
Thanks, im unsure what changes i have made, if any (copied the omb folders from an old machine to a reinstalled one "only") |
Beta Was this translation helpful? Give feedback.
It is described in the error message:
"If you have uncommited changes in '/home/stefan/.oh-my-bash', please commit, stash or discard them and retry updating."
The contents of the oh-my-bash repository is managed by Git. If you directly modify the files of Oh My Bash, you need to tell what to do with that change to Git. There are options:
git add ...
command. Then you can commit the added changes by thegit commit ...
command. Please refer to any pages introducing Git. In this case, if there is a con…