diff options
-rw-r--r-- | README.Mageia.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/README.Mageia.md b/README.Mageia.md index 126c5c97..02236d09 100644 --- a/README.Mageia.md +++ b/README.Mageia.md @@ -58,8 +58,15 @@ You can then push this to us quite happily: #### Merging +Before doing a merge, it's good to minimize the changes with upstream. For example, if the fork is based upon 9.78, first check for the changes. Use: + + $ git diff 9.78...mga/distro/mga ':!man/' ':!mandriva/ChangeLog' ':!*.po' ':!mandriva/po' + +In above command git is instructed to hide certain directories. Make sure to run the command from the main directory for this to work. + We try to stick to merging only upstream tags. To do this we would simply do: + $ git checkout distro/mga $ git merge 9.78 You then have the fun job of fixing the (no doubt) numerous conflicts! |