Fork me on GitHub

Xử lý Git trước khi push code lên remote

Trước khi commit code

Bước 1: Devloper nên nhớ lấy code về từ remote trước

git pull --rebase origin master

Bước 2: Thực hiện kiểm tra code conflict ngay tại local trước khi push code lên remote

git stash
git pull --rebase origin master
git stash apply

Comments !

social