Extra Form
PHP PHP 7.4
CMS Rhymix 2.x

rhymix 2.0 upgrade(git으로) 아래와 같이 진행 중 충돌발생하였어요.

 

[root@localhost xe]# git stash apply
modules/page/tpl/css/mpage.css: needs merge
unable to refresh index
 

merge하라고 하는데 git은 생전 처음이라 어찌해야할 지 몰라 구글링해봐도 설명이 다들 왜케 어렵나요ㅠㅠ

git을 따로 공부해야 하는지ㅠㅠ

 

modules/page/tpl/css/mpage.css 열어보니 아래와 같은데, 뭐부터 해야 되는 지 도움 부탁 드립니다.

<<<<<<< Updated upstream
/* This file is not used in Rhymix. */
=======
/* Mobile XE */
body{margin:0;background:#fff;color:#000;word-wrap:break-word}
body,input,textarea,select,button,table{font-family:"Malgun Gothic","맑은 고딕",Tahoma, Geneva, sans-serif}
img{border:0}
em{font-style:normal}
.bd{position:relative;overflow:hidden;clear:both}
>>>>>>> Stashed changes

 

  • profile

    /* This file is not used in Rhymix. */

    이거 한 줄만 남기고 다 삭제하시면 됩니다.

    어차피 최신 코어에서는 안 쓰는 파일이니 충돌이 나든 말든 상관없기는 합니다.

     

    이후에 어떻게 진행할지는 현재 git 저장소의 상태에 따라 다릅니다.

    커밋하기를 원하셨다면 해당 파일을 git add한 후에 git commit 하시면 되고,

    그냥 git stash apply만 하고 싶으셨던 거라면 위에 말씀드렸듯이 필요없는 파일이니

    충돌만 대충 해결하고 그냥 두셔도 상관없을지도...

  • profile profile
    아 넘 감사합니다 git stash apply만 해볼게요. 첫줄 알려주신 방법 해볼게요.