Cara Memperbaiki Error Pull dari git seperti ini :
error: Your local changes to the following files would be overwritten by merge:
admin/login/index.php
admin/mod/sw-footer.php
Please commit your changes or stash them before you merge.
Langkah langkah nya :
#git stash
#git pull <remote name> <remote branch name> (or) switch branch
#git stash apply --index
0 Comments