일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ReactJS
- AWS
- Gradle
- jenkins
- linux
- Git
- tool
- elasticsearch
- MySQL
- JVM
- laravel
- db
- Oracle
- Web Server
- IntelliJ
- php
- springboot
- java
- javascript
- jsp
- 맛집
- redis
- 요리
- Spring Boot
- ubuntu
- Design Patterns
- Spring Batch
- devops
- it
- Spring
- Today
- Total
목록Git (26)
아무거나
fatal: empty ident name (for ) not allowed. 오류가 생겼을 때*** Please tell me who you are. Run git config --global user.email "you@example.com" git config --global user.name "Your Name" to set your account's default identity.Omit --global to set the identity only in this repository. fatal: empty ident name (for ) not allowed. 이런 오류가 생겼을때git config --global user.email 이메일주소@naver.comgit config --global..
[github page와 hexo를 통해 블로그 만들기]해당 내용은 hexo 프레임워크를 사용하여 손쉽게 블로그를 제작하는 내용을 기술했다.선행 작업은 gitpage를 hosting한 상태에서 진행이 필요하다. hexo(https://hexo.io)- hexo는 jekyll와 함께 대표적으로 정적 페이지를 쉽게 만들 수 있도록 도와주는 서비스이다. 1. 설치필요 - node.js(https://nodejs.org/en/) - git 2. hexo 설치 및 블로그 생성 - npm install hexo-cli -g hexo init blog // hexo설치된 폴더로 이동하여 명령실행(C:\Users\..\AppData\Roaming\npm) cd blog npm install - 설치가 다 되면 설치된 ..
Github 소스 수정 히스토리 확인 단축키소스 수정 히스토리 확인(github): "단축키 B"를 클릭하면 누가 소스를 수정했는지 확인할 수 있는 기능이다.(=git blame)"
Github 전체 Repository에서 여러내용 찾는 단축키 전체 Repository에서 찾기(github): "단축키 /"를 클릭하면 계정 내 전체 Repository에서 소스 코드 뿐 만 아니라 Commit 메세지, issue, wiki 등의 내용도 찾아준다.
Github or Gitlab Repository 안의 파일 검색 단축키 단축키 Repository 안의 파일 검색(gitlab, github): Repository에서 파일을 찾을 때 "단축키 T"를 누르면 쉽게 파일을 검색 할 수 있다.
.gitignore란 project에 원하지 않는 back up file, log file, compile된 파일 등을 git에서 제외시킬 수 있는 설정 파일이다. git을 사용하다보면 중요한 정보들이나 원하지 않는 파일들이 같이 commit되는 경우가 있다. 그럴땐 .gitignore 파일을 생성하여 사용하면 된다.그러나 매번 .gitignore의 내용을 입력하기에는 귀찮기 마련이다. 그럴땐 자동으로 .gitignore를 생성해주는 사이트에서 만들어보자. ( https://www.gitignore.io/ ) 1. https://www.gitignore.io/ 사이트에 접속한다. 2. Search box에 제외시킬 내용을 입력하자. 예를 들어 gradle이란 단어를 입력해보자. 3. 입력 후 create..