Wednesday 28 March 2018

fatal: refusing to merge unrelated histories

This problem generally occur when you try to checkout repo for the first time and try to commit some files in repo.

and during that following error message is shown from git:

Problem:

fatal: refusing to merge unrelated histories
Error redoing merge 1234deadbeef1234deadbeef

Solution:
1. open cmd.exe
2. open your repo path in cmd
3. Run command 

git pull origin master --allow-unrelated-histories

this should solve your problem.



Spring boot with CORS

CORS (Cross-Origin Resource Sharing) errors occur when a web application running in a browser requests a resource from a different domain or...