일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- tcping
- springboot
- 스프링시큐리티
- install
- sqldeveloper
- apache
- Maven
- postman
- undefined
- IntelliJ
- development
- Oracle11g
- springboot #controller #jsp
- restapi
- SpringSecurity
- 스프링부트 #springboot #project #Intellij
- RESTful
- 스프링부트
- ojdbc
- Developer
- HATEOAS
- 환경변수
- mysql
- Web
- mssql
- Tomcat #SpringFramework
- 웹개발
- Database
- SpringInitializer
- oracle
- Today
- Total
목록VCS (7)
여백에 도장 찍기
개발자라면 알아두어야 할 Git Command에 대해 정리해보자. ○ Git Version & Status Check $ git --version git version 2.22.0.windows.1 $ git status ○ Git 시작하기 $ git init $ git clone 'git-repository-name' $ git add $ git commit -m 'commit-message' $ git push master origin $ git diff $ git merge $ git rebase ... ○ Git Branch 관련 # branch List $ git branch # Create branch $ git branch 'new-branch-name' # Change branch $ gi..
※ Git 설치 되어있고 GitHub 계정이 존재한다는 가정하에, GitHub에 내 Local에 존재하는 Project를 Share 해보자. 1. File > Settings > Version Control 1.1. Git 설치 디렉터리 넣어주기 1.2. GitHub 계정 넣어주기 2. VCS > Import into Version Control > Share Project on GitHub 3. 문제 없이 GitHub에 해당 프로젝트가 Share 되었다면 다음의 창을 볼 수 있다. 4. GitHub 나의 Repositories 에 가서 해당 프로젝트가 올라왔는지 확인해본다 :)
Git - Submodule Git의 서브모듈은 Git 저장소 안에 다른 Git 저장소를 둘 수 있게 해준다. 이렇게 해도 두 Git 저장소 모두 여전히 독립적으로 관리된다. 서브모듈을 사용하는 프로젝트를 Clone하면 해당 서브모듈 디렉토리는 빈 디렉터리다: 먼저 git submodule init 명령으로 서브모듈을 초기화하고 git submodule update 명령으로 서버에서 데이터를 가져온다 [vagrant:root@localhost ~]# git clone 'http://git_repo_dir' [vagrant:root@localhost ~]# submodule init [vagrant:root@localhost ~]# submodule update
git clone 을 통해 remote repository 의 데이터를 내려받으려고 할때, 다음과 같은 에러가 발생하는 경우가 있다. ※ Error: fatal: unable to access 'remote repository url': SSL connect error Solution: [vagrant:root@localhost ~]# yum -y update nss curl >> 다시 git clone 수행하면 정상 작동하는 것을 확인할 수 있다.
Git Version이 1.7 이하이면 SSL Connection에 문제가 발생한다. (버전상의 한계) 따라서, 서버에서 Gitlab, GitHub 의 Code를 Clone받아, 수정하여 Push 적용하기 위해서는 Git Version을 Upgrade해야 한다. Git Version Upgrade를 위해 Git RPM Package를 설치하고, Git을 재설치 해준다. # cat >> /etc/yum.repo.d/wandisco-git.repo name=WANdisco Distribution of git > baseurl=http://opensource.wandisco.com/rhel/6/git/x86_64 > enabled=1 > gpgcheck=1 > gpgkey=file:///etc/pki/rpm-..