Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

„Floating“ commit in git

Tags:

git

merge

rebase

In a project of ours we have, as usual, a master branch. Based on that is the deployment branch, where the settings are modified. Also based on that is a mirror branch that runs the mirror of the deployment. The master branch ought not contain any config changing patches.

Small features and fixes are developed in the mirror branch. So after adding a feature, it looks like this:

master:      history ┐
deployment:          ├─ deployment-config
mirror:              └─ mirror-config ── feature

Now to move the feature back into master, I first have to reorder the patches in the mirror branch:

master:      history ┐
deployment:          ├─ deployment-config
mirror:              └─ feature ── mirror-config

Now I can fast-forward-merge that into master

master:      history ┬─ feature ┐
mirror:              │          └─ mirror-config
deployment:          └─ deployment-config

And then merge master into mirror, and rebasing it onto master

master:      history ── feature ┐
mirror:                         ├─ mirror-config
deployment:                     └─ deployment-config

Is there a plugin or tool that would automate that, so that

  • every new commit is automatically applied „below“ the top commit,
  • every merge or cherry-pick is also automatically applied „below“ the top commit,
  • a merge from such a branch pulls from the state „below“ the top commit?
like image 846
Joachim Breitner Avatar asked Oct 05 '22 13:10

Joachim Breitner


1 Answers

In general I would recommend to try and get away from that config commit situation. Can’t you just store the config on your deployments? Or use smudge filters, as I explained here: https://stackoverflow.com/a/13616911/758345

If that’s not an option, let me answer your questions, as there are simpler ways to achieve what you want thanks to the fact that branches in git are so light-weight. None of these are a complete automation, but quite simple and you could definitely write some small scripts for that.

every new commit is automatically applied „below“ the top commit

Not quite sure about the situation, but assuming you made changes and want to commit them:

  1. Remember your current branch-head’s SHA
  2. Stash your changes
  3. git reset --hard HEAD^
  4. stash pop
  5. commit
  6. cherry-pick your old branch-head

every merge or cherry-pick is also automatically applied „below“ the top commit

same as above: reset --hard, do your work, cherry-pick old branch head

a merge from such a branch pulls from the state „below“ the top commit?

This one is very simple: git merge mybranch^


If you do not want to change your working dir, and the files modified by your “config commit” are not touched by your other operations, you can do this:

  1. Remeber your current branch-head’s SHA
  2. Do a soft reset: git reset HEAD^
  3. Make git ignore your config files via git update-index --assume-unchanged
  4. create your commit
  5. run git update-index --no-assume-unchanged for your config files
  6. commit again – this will recreate your config files.

If you automate this via script, you can use git to get a list of config files for --assume-unchanged by looking at the config commit. If you do not want to automate this, you can skip step 3 and 5, and just make sure you don’t commit your config files in step 4.

like image 147
Chronial Avatar answered Oct 10 '22 02:10

Chronial