일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- tomcat7
- 통영여행
- 방이편백육분삼십성신여대
- 통영에어비앤비
- 성북구맛집
- 통영
- springboot
- 성신여대편백집
- 국가직
- JavaScript
- 한남동맛집
- 뚝섬역맛집
- 자바스크립트에러처리
- 퇴사후공무원
- react
- 방이편백육분삼십
- npm
- 서울숲누룽지통닭구이
- 성신여대맛집
- 한성대맛집
- 영화추천
- 스페인여행
- gradle
- ubuntu자바설치
- 돈암동맛집
- 파이썬
- 통영예쁜카페
- 꼴뚜기회
- 공무원
- ELK
- Today
- Total
목록ICT&Tools/Git (2)
코린이의 기록
Command line instructions Git global setup git config --global user.name "yoonsoyeon" git config --global user.email "sy.yoon@alticast.com" Create a new repository git clone http://10.20.30.40:8000/ota_system/admin-ui.git cd admin-ui touch README.md git add README.md git commit -m "add README" git push -u origin master Existing folder cd existing_folder git init git remote add origin git@10.20.3..
우선 Bitbucket에서 Create repository를 생성한다 Configure Git for the first time 사용자 정보를 먼저 설정한다. 이름과 이메일 주소를 설정해준다. Commit시 사용되기 때문 git config --global user.name "[user name]" git config --global user.email "[user email]" ex. # git config --globlal user.name "test" # git config -- global user.eimail "test@google.com" Working with your repository I just want to clone this repository If you want to simply..