git
-
Git Commandsgit 2020. 2. 17. 15:18
.git : git repository git config --global core.editor "vim" : change default editor git init : initialize repository git status : working tree status git remote add git pull git add : add to staging area git commit : create version git commit -am : add + commit git push git log : show version git log --oneline git log --stat : show versioned files git diff : show changes git log -p : show log wi..