일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- tcping
- 스프링부트 #springboot #project #Intellij
- SpringInitializer
- IntelliJ
- Database
- Developer
- install
- HATEOAS
- Maven
- sqldeveloper
- apache
- springboot #controller #jsp
- restapi
- mysql
- RESTful
- Tomcat #SpringFramework
- 스프링시큐리티
- development
- oracle
- 스프링부트
- SpringSecurity
- springboot
- Oracle11g
- Web
- 웹개발
- mssql
- undefined
- 환경변수
- postman
- ojdbc
Archives
- Today
- Total
여백에 도장 찍기
Git - Private Token 이용하여 파일 전송 본문
Git 설치없이 Git Repository File을 가져오는 법
Git repository에 존재하는 하나의 스크립트 파일을 서버에 내려받고자 하는 경우에는 파일하나 때문에 git을 설치하기 부담스럽다.
이런 경우 wget 이나 curl을 사용하여 해당 파일을 출력하거나 저장할 수 있다.
TOKEN: User settings > Access Tokens > Personal Access Tokens 에서 토큰 생성을 생성한다.
Token Name입력 및 Expires at을 설정한 뒤, scopes를 설정하고 Create personal access token을 클릭하면 생성된다.
git_filerepos: project > Files > 가져오고자 하는 파일 > Open raws 클릭하여 url 확인
# curl --header "PRIVATE-TOKEN: abcDSgdsxxxxxx" https://git_filerepos -o "파일 저장하고자 하는 directory"
*** 마지막으로, private token이 shell에서 노출되었으므로 보안을 위해 git web page로 이동하여 Token을 REVOKE 시켜서 제거해준다.
'VCS > Git ' 카테고리의 다른 글
[IntelliJ] GitHub에 Project 올리기 (0) | 2019.07.12 |
---|---|
Git Submodule (0) | 2019.03.06 |
git - ssl connection error 해결 (0) | 2019.02.22 |
Git SSL Connection (0) | 2019.01.21 |
Git - Repository add & remove (0) | 2018.12.06 |
Comments