[SpringBoot] EC2에 프로젝트 clone 받기
2022. 3. 1. 21:23
programming/SpringBoot
github에서 코드를 받아올 수 있게 EC2에 깃을 설치. 1. ssh 서버주소로 접속을 합니다. 2-1. git 설치 sudo yum install git 2-2. git 설치 상태 확인 git --version 2-3. git clone으로 저장할 디렉토리를 생성 (예시로 app/study 폴더 생성) mkdir ~/app && mkdir ~/app/study 2-4. 생성된 디렉토리로 이동 cd ~/app/study 2-5. github 웹페이지에서 https 주소를 복사 3. 복사한 https 주소를 통해 git clone을 진행한다. git clone 복사한 주소
[SpringBoot] 1장 인텔리제이에서 깃과 깃허브 사용하기
2021. 11. 11. 16:31
programming/SpringBoot
최근의 개발 상황에서 버전 관리는 뺄 수 없는 요소이다. 이 버전 관리는 SVN에서 깃으로 완전히 전환되어 가는 중이며, 실제로 대부분의 IT 서비스 회사는 깃을 통해 버전 관리를 하고 있다. 대표적으로 깃허브와 깃 랩이 있으며 둘 다 무료로 사용할 수 있지만 가장 대중적인 깃허브를 연결할 것이다. http://github.com GitHub: Where the world builds software GitHub is where over 73 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a..