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
- GitHub
- Data Structure
- Linked list
- 코딩테스트
- SWEA
- 시뮬레이션
- spring boot
- Priority Queue
- Python
- SQL
- Bruth Force
- Back tracking
- boj
- Vue.js
- aws
- 알고리듬
- hash table
- 코테
- 구현
- Trie
- DFS
- gpdb
- programmers
- CSV
- 알고리즘
- BFS
- 모의SW역량테스트
- Algorithm
- JavaScript
- django
Archives
- Today
- Total
hotamul의 개발 이야기
[Git] Github에 프로젝트 업로드 본문
1. Git 설치
Git - Downloads
Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific exp
git-scm.com
2. Github에 새로운 폴더 생성

3. Repository 이름 정해주기, 생성 (README 파일은 프로젝트 내용을 적는다, 안적어도 됨)
4. Repository 주소 복사
5. 깃 허브에 업로드할 파일 우클릭, git bash here 클릭 (git bash 로 실행)
6. 명령어 입력
git config --global user.name "내 이름"
git config --gloabl user.email "내 이메일"
git init
git add
git status
git commit -m "주석"
git remote add origin "깃허브 repository 주소(복사한 것)"
git push -u origin master
'Dev. > Git' 카테고리의 다른 글
[Git] 개발 환경 (local)에서 remote branch랑 matching (0) | 2022.07.20 |
---|---|
[Git] 파일 수정 후 다시 커밋 (0) | 2021.11.10 |
Comments