AI 시대, 코드 품질과 SW공급망의 새로운 기준(Sonar & JFrog)

안녕하세요. Sonar & JFrog 조인트 세미나 개최합니다. 좌석이 한정되어 있으니, 서둘러 등록하세요.
2026.09.17 (목) 13:00 코엑스 300호


충돌 해소 절차는 다음과 같다.

Step 1) 파일 확인

$ git status
On branch master
You have unmerged paths.
(fix conflicts and run "git commit")
(use "git merge --abort" to abort the merge)

Unmerged paths:
(use "git add <file>..." to mark resolution)

both modified:   merge.txt (충돌 파일)

Step 2) 파일 수정

편집기를 통해 파일을 수정한다.

$ cat merge.txt
<<<<<<< HEAD
this is some content to mess with
content to append
=======
totally different content to merge later
>>>>>>> new_branch_to_merge_later

Step 3) Add to index & commit

git add <conflicted files>
git commit -m <commit message>

Step 4) Push to origin

git push origin
  • 레이블 없음