본문 바로가기

기록/기타

(6)
파이썬 설치하기 1. Python 설치하기 https://www.python.org/downloads/windows/ Python Releases for Windows The official home of the Python Programming Language www.python.org 파이썬 홈페이지에서 Python 3 설치 2. 환경변수 등록 제어판 - 시스템 및 보안 - 고급 시스템 설정 시스템 변수 편집 후 Python 설치 경로 추가
[Git] No projects found 문제상황 Git에 올라가있는 프로젝트를 import하는 중에 No projects found 오류 / 경고가 발생했다. 해결방법 gitignore 파일에 .project와 .classpath 파일이 포함되어 해당 파일이 git에 올라가지 않아ㅇㅇㅇㅇ 생기는 오류이다. 파일 commit 및 push할 때 해당 파일을 포함시켜 올리거나, IDE에서 general로 git 받고 프로젝트 우클릭 - Configure - Convert to Maven Project 를 누르면 해결된다.
[Git] Fork와 Clone 주절. 더보기 몇 차례의 팀 프로젝트를 진행하면서 팀원들과 파일 공유를 해야 했다. 공유 폴더를 이용하는 경우에는 파일의 비교와 취합이 오래걸렸고, 작업자도 변경된 파일을 일일이 건네줘야하는데에서 불편함이 있었다. 간혹 파일이 깨지거나 잘못올라가면 여러사람 골때린다. 이후에 git을 사용하면서 팀장의 저장소를 clone하고, contributor로 내 게정을 등록하여 PR을 보내는 방식으로 작업했다. 대규모도 아니고 수업연계 프로젝트이기 때문에 기본적인 기능을 사용하기로 한 것이다. 실제로 프로젝트 중에 github 트러블이슈가 너무 많았다... 제대로 공부하지 않고 부딪히면서 작업한 팀원 개개인의 탓도 있었겠지만 다들 개인적으로만 이용하고 팀으로 작업하다보니 코드 충돌 문제나 저장소 자체의 문제가 자꾸..
[Github] github repository clone & 특정 커밋 버전으로 가져오기 다른 사용자의 소유의 repository 자체를 내 git으로 복제하는 방법이다. commit내역까지 전부 개인 저장소로 복제하는 방법이다. 1. 복제할 repository 주소 가져오기 git clone --mirror repository 주소 2. 복제 받을 개인 repository 만들기 github 페이지에서 새 repository를 만들고, 저장소의 주소를 복사 git remote set-url --push origin 새 repository 주소 3. 복제하기 (push) cd명령어로 코드가 있는 곳으로 이동한다. git push --mirror 특정 커밋 버전 가져오기 (repository clone 전제) 1. 원본 깃의 가져올 특정 커밋의 버전 복사하기 2. 특정 커밋 버전으로 업데이트하..
Eclipse) the import java.util cannot be resolved 오류 build path 문제. 해결 프로젝트 우클릭 -> build path -> Libraries -> JRE System Library 클릭 -> apply 안되면 현재 적용되어있는 파일을 remove하고 add Libraries -> default.. 로 다시 적용. * 관련 stackoverflow 링크 https://stackoverflow.com/questions/16918959/import-xxx-cannot-be-resolved-for-java-se-standard-classes Import XXX cannot be resolved for Java SE standard classes I use Eclipse and turns out I have a bunch of import * not res..
Github) jackson-databind 알림 관련 github help 페이지(메일 첨부) :https://help.github.com/en/github/managing-security-vulnerabilities/configuring-automated-security-updates Configuring automated security updates - GitHub Help Configuring automated security updates You can use automated or manual pull requests to easily update vulnerable dependencies. You can enable automated security updates for any repository that uses security aler..

LIST