When upgrade : "posawesome" that are not committed

Hello all…

when try to upgrade i got this error message:
Cannot proceed with update: You have local changes in app “posawesome” that are not committed.

Here are your choices:

  1. Merge the posawesome app manually with “git pull” / “git pull --rebase” and fix conflicts.
  2. Temporarily remove your changes with “git stash” or discard them completely
    with “bench update --reset” or for individual repositries “git reset --hard”
  3. If your changes are helpful for others, send in a pull request via GitHub and
    wait for them to be merged in the core.

but i am really new to linux and not sure what exactly should i do.

Thank you

this is git issue, especially if you have change file(s) under apps folder

I assume you not sure what have change, so the simplest way is give up the change
$git add --all

or if you want to check what has conflict, execute this before “git add --all”
$git status

after, run
$git stash

you can then run update as usual

this command will give up what you change locally and prevent update conflict later, by give up what you make locally
$git stash clear

that should enough for operation, if you want know more, search git for better handling.

1 Like