#Initializing
git config --global user.name ## ex) Jaryong Lee
git config --global user.email ## ex) crystal00@kaist.ac.kr
git clone https://github.com/crystal150/CS408.git
git branch
#•master
# bases
# server
# front
git checkout
#Add, Remove, Commit, Push
# If you add or modify some files,
git status
# Something changed --> red
# Allready commited --> green
git add <file_name>
git rm <file_name>
git commit
# Check file shows
# Input comment without ## and :wq
git push
# Done
#Download latest project file from github
git pull