Thứ Năm, 27 tháng 2, 2020

GitHub command

GIT COMMAND PUSH NEW: đẩy code lên branch master
git init
git add --all
git commit -m "initial commit"
git remote add origin https://github.com/YOUR.git
git push -u origin master

------------------------------


GIT CHANGE: cập nhật thay đổi
git add .
git commit -m "Final Changes"
git remote add origin url https://github.com/YOUR.git
git remote -v
git push -f
git push origin master