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

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -