Site icon Khoa Phạm BK Blog

Các lệnh Git cơ bản nhất cho mọi lập trình viên

Tạo mới & Clone

git init
git clone <đường-dẫn-đến-repository>
git remote add origin <đường-dẫn-đến-repository>

Add & Commit

git add
git add * //tất cả các file
git commit -m "<nội dung commit>"

Pull & Push

git fetch
git pull origin <tên-branch>
git push origin <tên-branch>

Branches

git branch
git branch -a
git checkout -b <tên-branch>
git checkout <tên-branch>
git push origin <tên-branch>
git branch -m <tên-mới-cho-branch>
git branch -d <tên-branch>
git push origin :<tên-branch>

Logs

git log --oneline
git log -<số-commit-cần-hiển-thị>
git log -p -<số-commit-cần-hiển-thị>
git diff
git diff <file-muốn-hiển-thị-log>
git blame <file-muốn-hiển-thị-log>

Exit mobile version