iLCSoft / ILDConfig

Package for iLCSoft configuration files related to the ILD detector simulation
GNU General Public License v3.0
3 stars 23 forks source link

Updated calibration parameters of SDHCAL #59

Closed libo929 closed 6 years ago

libo929 commented 6 years ago

BEGINRELEASENOTES

ENDRELEASENOTES

rete commented 6 years ago

Pinging @libo929

rete commented 6 years ago

Your branch seems to have conflicts. I can't merge the PR. Please pull and rebase on origin/master

libo929 commented 6 years ago

@rete Hi, how to pull and rebase for my case ?
BTW, I tried to solve the conflicts after the pull I did. I did not see conflicts on my side.

rete commented 6 years ago

Normally, the following commands should work :

git checkout master
git pull
git checkout calibration_sdhcal
git rebase origin/master
libo929 commented 6 years ago

The is what I got from the last git command:

$ git rebase origin/master First, rewinding head to replay your work on top of it... Applying: Updated calibration parameters of SDHCAL Using index info to reconstruct a base tree... M StandardConfig/production/Calibration/Calibration_ILD_l4_o2_v02.xml M StandardConfig/production/Calibration/Calibration_ILD_l5_o2_v02.xml M StandardConfig/production/Calibration/Calibration_ILD_l5_o4_v02.xml M StandardConfig/production/Calibration/Calibration_ILD_s4_o2_v02.xml M StandardConfig/production/Calibration/Calibration_ILD_s5_o2_v02.xml M StandardConfig/production/Calibration/Calibration_ILD_s5_o4_v02.xml Falling back to patching base and 3-way merge... Auto-merging StandardConfig/production/Calibration/Calibration_ILD_s5_o4_v02.xml CONFLICT (content): Merge conflict in StandardConfig/production/Calibration/Calibration_ILD_s5_o4_v02.xml Auto-merging StandardConfig/production/Calibration/Calibration_ILD_s5_o2_v02.xml CONFLICT (content): Merge conflict in StandardConfig/production/Calibration/Calibration_ILD_s5_o2_v02.xml Auto-merging StandardConfig/production/Calibration/Calibration_ILD_s4_o2_v02.xml Auto-merging StandardConfig/production/Calibration/Calibration_ILD_l5_o4_v02.xml CONFLICT (content): Merge conflict in StandardConfig/production/Calibration/Calibration_ILD_l5_o4_v02.xml Auto-merging StandardConfig/production/Calibration/Calibration_ILD_l5_o2_v02.xml Auto-merging StandardConfig/production/Calibration/Calibration_ILD_l4_o2_v02.xml CONFLICT (content): Merge conflict in StandardConfig/production/Calibration/Calibration_ILD_l4_o2_v02.xml Failed to merge in the changes. Patch failed at 0001 Updated calibration parameters of SDHCAL The copy of the patch that failed is found in: /Users/libo/workplace/ILDConfig_libo2/.git/rebase-apply/patch

When you have resolved this problem, run "git rebase --continue". If you prefer to skip this patch, run "git rebase --skip" instead. To check out the original branch and stop rebasing, run "git rebase --abort".

After that, I edited the files with conflicts, then I used "git add ." and "git commit". Is that correct ?

Finally I used "git push origin calibration_sdhcal", but nothing happens.

rete commented 6 years ago

No, you shouldn't do that. Do :

git checkout master
git pull
git checkout calibration_sdhcal
git rebase origin/master
# ... long error message due to conflicts ...
# ... Edit files and solve conflicts ...
git add files
git rebase --continue
git push your-fork  calibration_sdhcal -f
libo929 commented 6 years ago

Could you please check it again ?