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