Version Control Revision Control/Git(4)
-
[GitLab] 깃랩 root 계정 비밀번호 변경
■ GitLab root 계정 비밀번호 변경 ※ 개발환경 1) 윈도우 : OS가 윈도우인 독자의 경우는 아래작업에서 [sudo] 문자만 제거하고 커멘드(cmd)창에서 진행 2) 리눅스 : OS가 리눅스인 독자의 경우는 작성순서대로 작업 진행 ※ 작업방법 실행문에 해당하는 명령어만 명령어만 실행하고 결과문이 동일하게 호출되는지 확인하면서 진행한다. 1. GitLab Shell 로 접근 ▶ 실행문 $ sudo gitlab-rails console -e production 2. GitLab root 계정 찾기 ▶ 실행문 user = User.where(id : 1).first ◀ 결과문 => # 3. GitLab root 계정 비밀번호 변경 후 저장 ▶ 실행문 user.password='[변경 비밀번호]' u..
2021.04.22 -
[Gitlab] 깃랩 로컬 초기 환경설정
■ 작업 순서 1. 로컬에서 Gitlab 레퍼지토리를 생성하고자 하는 폴더로 이동 후 명령어 실행 git init 2. Gitlab 계정 설정 2.1 Gitlab 이름 설정 ex) git config --global user.name "Hyunmin" git config --global user.name [깃렙 계정 이름] 2.2 Gitlab 이메일 설정 ex) git config --global user.email "hyumin@example.com" git config --global user.email [깃랩 계정 이메일] 3. 원격(Remote) 생성하기 ex) git remote add origin http://example.com/test/test.git git remote add origin..
2021.04.16 -
[GitHub] 깃허브(GitHub) 프로젝트(Project) 이클립스(Eclipse)에 불러오기(import)
■ 깃허브 프로젝트 이클립스에 가져오기(import) ※ 작업 순서 ▶ 검색창에 'git' 입력 ▶ Git Repositories (Git) 클릭 1) Git Repositories 탭으로 이동 2) Clone a Git repository 클릭 1) GitHub Repository URL 입력 2) GitHub 사용자ID, 비밀번호 입력 3) Next 버튼 클릭 ▶ Next 버튼 클릭 1) GitHub Repository의 Project를 저장할 로컬 위치 지정 2) Finish 버튼 클릭 1) Git Repositories 탭으로 이동 2) GitHub Repository에서 불러온 Project 확인 1) GitHub Repository에서 불러온 Project 마우스 우 클릭 2) Import P..
2020.08.03 -
[GitHub] 깃허브(GitHub) 이클립스(Eclipse) 연동
■ GitHub Repository 에 Eclipse Project 올리기 Build software better, together GitHub is where people build software. More than 50 million people use GitHub to discover, fork, and contribute to over 100 million projects. github.com ■ 이클립스(Eclipse) 설정 1) 돋보기 클릭 1) 검색창에 'git' 입력 2) Git Repositories (Gi) 클릭 ※ GitHub Repository가 만들어져 있는 경우 1) Clone a Git repository 선택 1) GitHub Repository URL 을 입력 (아래 사진..
2020.07.31