Changes between Version 78 and Version 79 of HowToGit


Ignore:
Timestamp:
Nov 17, 2019, 1:57:21 PM (4 years ago)
Author:
neteler
Comment:

G76 -> G78

Legend:

Unmodified
Added
Removed
Modified
  • HowToGit

    v78 v79  
    6363# (HEAD -> master, upstream/master)
    6464
    65 ### b) updating releasebranch_7_6
     65### b) updating releasebranch_7_8
    6666# switch to branch
    6767# only once
    68 git checkout -b releasebranch_7_6 origin/releasebranch_7_6
    69 # next time, git checkout releasebranch_7_6
     68git checkout -b releasebranch_7_8 origin/releasebranch_7_8
     69# next time, git checkout releasebranch_7_8
    7070
    7171# merge updates into local branch
    72 git merge upstream/releasebranch_7_6
     72git merge upstream/releasebranch_7_8
    7373
    7474# at this point we have reached:
    75 # (HEAD -> releasebranch_7_6, upstream/releasebranch_7_6)
     75# (HEAD -> releasebranch_7_8, upstream/releasebranch_7_8)
    7676
    7777# update own remote
     
    252252=== Made a mess? Fix it ===
    253253
    254 Example: mess happened on releasebranch_7_6:
    255 
    256 {{{
    257 git reset --hard upstream/releasebranch_7_6
    258 git pull upstream releasebranch_7_6 --rebase
     254Example: mess happened on releasebranch_7_8:
     255
     256{{{
     257git reset --hard upstream/releasebranch_7_8
     258git pull upstream releasebranch_7_8 --rebase
    259259
    260260# now all should be clean again