Вы можете зафиксировать в другой ветке, а затем объединиться в master
, когда код был проверен другими.
Ваш рабочий процесс:
git checkout -b my_new_feature # create a new branch 'my_new_feature' and switch to it
git add . # add all files to staging area
git commit -m "Add my new feature" # commit the change
git push origin my_new_feature # push this branch to 'origin'
Их рабочий процесс:
git pull origin
git checkout origin/my_new_feature
После проверки кода
git checkout master
git merge my_new_feature