본문 바로가기
Stay Hungry Stay Foolish/Git

Github / Git 입문하기

by HANNI하니 2021. 2. 1.

0. GIT Repositories 생성

 

1. github 새 폴더 생성후 git bash here로 git 접속하기

 

2. git init

.git 폴더 자동생성

 

3. git remote add origin 레포지토리주소

예) git remote add origin github.com/yyeongeun/Coursera.git

원격 저장소 정보 추가.

 

4. .git 폴더 안에 추가하고싶은 파일 생성

 

5. git status

새 파일있는지 확인

2개의 파일이 track되지 않았음을 확인.

6. git add .

전체 파일 추가

파일 추가후 get status로 다시 확인하기.

7. git commit -m "커밋명"

예) git commit -m "coursera 2weeks" 커밋 지정

인덱스에 추가된 파일의 내용을 저장소에 쓸 때.

+ 커밋 히스토리 확인하기

git log

커밋 대상/일시/이름 시간순서대로 출력

 

8. git push origin master 

로그인요청창 등장 -> 로그인 후 잘 업로드되었는지 확인

 

 

*** 명령어 정리 ***

Push 전에 Pull이 있다!
Pull 명령어 Push 명령어
git pull origin master 
지정해놓은 레로지토리에서 끌어온다. 
git status
현재 git과의 상태를 체크한다. 
git add . 
변경된 파일들을 모두 Tracking 
git commit -m "message" 
인식 할 수 있는 commit을 달아준다. 
git push origin +master 
실제로 git에 push 

 

*** Github Description/Readme 아이콘 넣기 ***

gmlwjd9405.github.io/2018/05/16/github-repository-description-icon.html

 

[Github] Github 저장소의 Description・Readme에 아이콘 넣기 - Heee's Development Blog

Step by step goes a long way.

gmlwjd9405.github.io

아이콘 종류

gist.github.com/rxaviers/7360908

 

Complete list of github markdown emoji markup

Complete list of github markdown emoji markup. GitHub Gist: instantly share code, notes, and snippets.

gist.github.com

 

 

*** Github 잔디 심어지지 않는 경우 ***

1일 1커밋을 목표로 하고 커밋했는데 그 놈의 잔디가 심어지지 않았다.

그 이유를 구글링해보니, Github에 등록된 email 주소와 local에 등록한 email이 다른 경우라고 한다!

이메일을 같게 설정해주니 오류가 해결되었다 ㅎㅎ

https://medium.com/lamaground/github-%EC%9E%94%EB%94%94%EA%B0%80-%EC%8B%AC%EC%96%B4%EC%A7%80%EC%A7%80-%EC%95%8A%EB%8A%94%EB%8B%A4-176d7e5e3aef

 

Github 잔디가 심어지지 않는다..!?

github 잔디 심기

medium.com

https://wellbell.tistory.com/43

 

github 잔디밭 안 심어지는 현상 해결 및 이미 커밋한 내용 반영하기

1. github 잔디 안심어지는 현상 해결 흔히 잔디밭이라고 불리는 github contributions(activity) 나의 저장소 중 어디라도 commit해서 push해서 반영 시키면 잔디가 심어져야하는데 심어지지 않을때가 있다.

wellbell.tistory.com


 

welcome to my github page !

github.com/yyeongeun/Coursera.git

 

yyeongeun/Coursera

코세라 강의 필기 및 과제. Contribute to yyeongeun/Coursera development by creating an account on GitHub.

github.com

https://www.youtube.com/watch?v=tC8Xj_Bf8Fw

대표사진

'Stay Hungry Stay Foolish > Git' 카테고리의 다른 글

Github 프로필 꾸미기  (0) 2021.08.26
Github pro 뱃지 받기  (4) 2021.07.30
Git 오류 해결하기 2  (0) 2021.03.03
Git 오류 해결하기  (0) 2021.02.11
Git clone  (0) 2020.10.15

댓글