Let's say i have to branches:
dd2e86 - 946992 - 9143a9 - a6fd86 - 5a6057 [master]
\
76cada - 62ecb3 - b886a0 [development]
Now a commit from devel is required in the master branch, so i cherry-pick it:
git checkout master
git cherry-pick 62ecb3
Assumed that some hotfixes are committed to master, can the development branch be safely rebased?