우분투 환경에서 로컬 git 으로 작업 하던 내용을 온라인 github 로 push 하는 방법은 아래와 같다.
1. https://github.com/ 로그인
2. 신규 프로젝트 생성
- "Repository name" 항목 기입
- Create repository 버튼 클릭
3. 로컬 작업 디렉토리 이동
4. 원격 서버 등록
- git remote add origin https://github.com/<주소>/<Repository name>.git
5. 데이터 push
- git push -u origin master
- 아이디, 패스워드 입력 하면 로컬 git 내용이 원격지에 push 된다.
명령어 요약
git remote add origin https://github.com/<주소>/<Repository name>.git
git push -u origin master
'Dev' 카테고리의 다른 글
dll 파일에 버전 정보 넣기 (0) | 2018.05.18 |
---|---|
[InstallShield] 스크립트에서 재배포 패키지 설치하기 (0) | 2018.04.04 |
[ubuntu] ifconfig 설치 하기 (0) | 2018.02.05 |
[vmware Error] VMware Workstation and Device/Credential Guard ~~~~ (0) | 2018.02.05 |
[postgresql] 인덱스 액세스 방식 제어하기 (0) | 2018.01.19 |