LINUX.ORG.RU

История изменений

Исправление anonymous-angler, (текущая версия) :

git checkout main
git pull
git checkout feature/my-feature-branch
git rebase -i main
git add -p
git commit -m $COMMIT_MESSAGE
git push
# repeat until merged

Исходная версия anonymous-angler, :

git checkout main
git pull
git checkout feature/my-feature-branch
git rebase -i main
git push
# repeat until merged