Update bench & erpnext

hello, please, i got a notification message when i log in to the app wth new releases of bench & erpnext. im under ubuntu 18.04 LTS desktop

Screenshot%20from%202019-06-09%2015-56-10

so in terminal i tried to update bench with the command bench update it giving this message :

    Cannot proceed with update: You have local changes in app "frappe" that are not committed.

    Here are your choices:

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

what i have to do ?

1 Like

@RedaBox

seems like you have some local changes. if you don’t have any changes and the update command shows this error then follow the below commands…

cd /home/frappe/frappe-bench/apps/frappe
git stash

cd /home/frappe/frappe-bench/apps/erpnext
git stash

cd /home/frappe/frappe-bench
bench update --reset

1 Like

thank you very much . update done successfully

1 Like