일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 백엔드
- Vue.js
- transaction
- axios
- github
- git push
- PathVariable
- java version
- 자바 버전
- RequestBody
- 빌드
- aop
- Spring AOP
- 도커
- VUE
- docker
- maven
- vue life cycle
- Java
- 개발자
- fetch
- gradle
- 비동기통신
- RequestParam
- 트랜잭션
- GIT
- 프론트엔드
Archives
- Today
- Total
목록github (1)
미소의 세상

Git Repository 생성 & Git 폴더 초기화 내 컴퓨터에서 프로젝트 폴더 만들기 내 컴퓨터에서 Desktop > test 폴더 밑에 hello라는 폴더를 만든다. git init : 프로젝트 폴더 초기화 git init으로 내 프로젝트 폴더에서 git을 사용할 수 있도록 초기화 한다. git init Github에 Repository 만들기 Github에 hello라는 Repository를 만든다. 이후에 내 컴퓨터의 프로젝트 폴더와 연결할 것이다. 첫 번째 명령어 git remote add origin https://github.com/{gitname}/test.git를 입력한다. git remote add origin https://github.com/{gitname}/test.git gi..