본문 바로가기

프로그래밍

Github Command

Command – Github

Effect CMD

Initialize git init
Clone git clone ~~.git
Status git status
Add git add FILE
Add All git add .
Commit git commit -m "Message"
Push git push -u origin branch
Remove rm -rf Folder
Move to branch git checkout branch
Merge to master git merge master
Commit Log git log
Remove Added git remove --cached File
Login 1 git config --global user.name ID
Login 2 git config --global user.email ID

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

Python Q&A  (0) 2020.06.17
GRASP Design (객체 지향 원칙)  (0) 2020.06.12
Anaconda Command 정리  (0) 2020.06.12
Cygwin에서 C Drive 찾기  (0) 2020.06.11
C Matrix multiplication with dynamic size(메트릭스 연산)  (0) 2020.06.10