Git - rebase future branch -
i have this
* 4b874fe - (origin/create_testing_main) | adding main.py testing. | * 6684012 - (head, origin/master, origin/head, master) |/ change names camelcase. * fd1514b - add basic classes. * 04a58c6 - initial commit.
and want add camelcase commit future branch.
somethink this:
* 4b874fe - (origin/create_testing_main) | adding main.py testing. * 6684012 - (head, origin/master, origin/head, master) | change names camelcase. * fd1514b - add basic classes. * 04a58c6 - initial commit.
it not safe
git checkout create_testing_main git rebase master
and check git log
there somethig wird
but after git push -f
want.
Comments
Post a Comment