sugarlabs / yupana

GNU General Public License v3.0
0 stars 7 forks source link

Port to Collabwrapper #6

Closed Saumya-Mishra9129 closed 2 years ago

Saumya-Mishra9129 commented 4 years ago

Got merge conflicts in my branch. However 7b9cf42 can be cherry-picked. @quozl @chimosky Please review. Fixes #5

quozl commented 4 years ago

Merge conflicts are because your branch deviates from master as at fa0bc74e8bd018df3a7b6d5e3ba10c72adb95660. Use a git history visualisation; it is something that GitHub just doesn't do. (Because the GitHub workflow is a fine tuned subset of the much wider git workflow; i.e. it is dumbed down.)

Fix is to;

# fetch current master
git fetch
# repoint your collab branch to current master
git reset --hard 55c1cce07e9e62967d1ab00636500083f8c77308
# reapply your commits but not the first one, since it is on master already
git cherry-pick 02dc3 cc374 e9d22 e9f38 9418 d7e2 7b9c
# verify nothing is different
git diff 7b9c
# push here
git push --force
Saumya-Mishra9129 commented 4 years ago

Merge conflicts are because your branch deviates from master as at fa0bc74. Use a git history visualisation; it is something that GitHub just doesn't do. (Because the GitHub workflow is a fine tuned subset of the much wider git workflow; i.e. it is dumbed down.)

Thanks @quozl , It helped finally..No conflicts now. :smile:

quozl commented 4 years ago

You appear to have cherry-picked only one of your original seven commits.

Saumya-Mishra9129 commented 4 years ago

You appear to have cherry-picked only one of your original seven commits.

Yeah!! It worked this way :sweat_smile:

quozl commented 4 years ago

I tried it, but did not know how to test.

chimosky commented 2 years ago

Tested and made an additional commit, the activity state is shared.