336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
별거 없네요. 첫째는 커밋하는 법과 커밋 하기전에 로컬 저장소 생성 등의 커맨드고 두번째는 잘못 커밋 했을 경우에 취소하는 커맨드입니다.
세번째는 브랜치에 관한 강의네요. 얼른 배우고 오겠습니다.


  • git checkout HEAD filename: Discards changes in the working directory.
  • git reset HEAD filename: Unstages file changes in the staging area.
  • git reset SHA: Can be used to reset to a previous commit in your commit history.

Additionally, you learned a way to add multiple files to the staging area with a single command:

git add filename_1 filename_2


'프로그래밍 > Git' 카테고리의 다른 글

# Git Teamwork  (0) 2016.01.30
# git 브랜치 관리 커맨드  (0) 2016.01.29
# Git 커맨드  (0) 2016.01.29

+ Recent posts