Quy trình làm việc chung với GIT

1

Trước khi bắt đầu công việc

git checkout develop
git fetch --all
git reset --hard origin/develop
git checkout -b feature/id
2

Coding

3

Push code

git add .
git commit -m "feat(ten-du-an): issue-1 create new feature"
git fetch --all
git rebase -i origin/develop
git push -u origin/feature/id
4

Tạo PR

Last updated