반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- tomcat7
- JavaScript
- 국가직
- 한남동맛집
- 스페인여행
- springboot
- 자바스크립트에러처리
- 한성대맛집
- 통영예쁜카페
- 돈암동맛집
- 성신여대편백집
- 방이편백육분삼십
- 방이편백육분삼십성신여대
- 통영에어비앤비
- 성북구맛집
- 공무원
- 성신여대맛집
- npm
- 서울숲누룽지통닭구이
- 파이썬
- 꼴뚜기회
- 뚝섬역맛집
- 통영
- react
- ubuntu자바설치
- gradle
- ELK
- 통영여행
- 퇴사후공무원
- 영화추천
Archives
- Today
- Total
코린이의 기록
[GIT] git INIT Command line instructions 본문
반응형
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.30.40:ota_system/admin-ui.git
git add .
git commit -m "Initial commit"
git push -u origin master
Existing Git repository
cd existing_repo
git remote rename origin old-origin
git remote add origin git@10.20.30.40:ota_system/admin-ui.git
git push -u origin --all
git push -u origin --tags
반응형
'ICT&Tools > Git' 카테고리의 다른 글
[git] Bitbucket 최초 사용하기 (Repository만들고 Code Push하기) (0) | 2019.07.11 |
---|
Comments