Development/Git, PM(286)
-
remote: Permission to xxx/xxx.git denied to xxx. fatal: unable to access 'https://github.com/codeconn/gitfirst.git/xxx.git/': The requested URL returned error: 403
오류 메시지remote: Permission to xxx/xxx.git denied to xxx. fatal: unable to access 'https://github.com/codeconn/gitfirst.git/xxx.git/': The requested URL returned error: 403
-
Merge Conflicts - You now have merge conflicts in your working copy that need to be resolved before continuing. You can do this by selecting the conflicted files and using the options under the 'Resolve Conflicts' menu. (충돌 해결 방법-SourceTree)
오류 메시지Merge Conflicts - You now have merge conflicts in your working copy that need to be resolved before continuing. You can do this by selecting the conflicted files and using the options under the 'Resolve Conflicts' menu. 브랜치 병합하기 (test -> master) 중 충돌 발생test 브랜치 작업이 성공적으로 끝나서 master브랜치로 병합하도록 하겠습니다. 현재 브랜치는 가져오려고 하는 브랜치로 이동해야 하는데 현재 브랜치가 master이므로 체크아웃할 필요가 없습니다. test 브랜치를 선택한 후 >> 마우스 우클릭 ..
-
[SourceTree] No files selected - Please select at least one file to discard
No files selected - Please select at least one file to discard 오류 메시지
-
SourceTree Update(소스트리 업데이트) - 1.10.20.1
SourceTree Update(소스트리 업데이트) - 1.10.20.1 [Yes] [X] 재시작시 환경설정이 초기화되네요 설정이 변경되어 있지 않아서 SourceTree 재시작
-
SourceTree(소스트리) 설치파일 다운받기
SourceTree(소스트리) 설치파일 다운받기https://www.sourcetreeapp.com/ [Download for Windows] 버튼 클릭
-
branch(브랜치), branch 활용
branch(브랜치)· 작업을 여러 가지 방향으로 진행하게 하는 것입니다.· 다양한 작업을 하기 위해 브랜치를 사용합니다.· 한 파일이 여러 버전으로 갈라져 각각 새 버전(새로운 내용)들이 추가되는 경우에 브랜치를 사용합니다.· 브랜치 안에서의 작업은 해당 브랜치에서만 유효합니다. branch 활용동일한 소프트웨어이지만 고객사별로 다른 대응이 필요할 때(커스터마이징이 필요할 때) 각각의 고객사마다 다른 버전이 필요하며 브랜치를 통해 이를 구현할 수 있습니다. 개발시 일정 기간마다 테스트를 하게 될 경우 나 실험적인 작성을 하거나 해당 기능을 구현이 가능한지 구현이 가능하더라도 그 것이 타당한지 아닌지 이런 것들에 대해 확신이 없을 때 브랜치로 만들어놓고 검증 후 채택하고 아니면 버리고 이런 검증 작업 전..