Changes between Version 55 and Version 56 of HowToGit


Ignore:
Timestamp:
Jun 11, 2019, 12:30:51 AM (5 years ago)
Author:
neteler
Comment:

cleanup

Legend:

Unmodified
Added
Removed
Modified
  • HowToGit

    v55 v56  
    4747
    4848{{{
     49# updating from git server: fetch all branches from all remotes
     50git fetch --all
     51# merge updates into local master
     52git merge upstream/master
     53
     54# at this point we have reached:
     55# (HEAD -> master, upstream/master)
     56
     57# list existing branches
     58git branch -a
     59
     60##### Implementation of own changes
     61# create new local branch (pick a new name for feature_branch_name)
     62git checkout -b feature_branch_name
     63
    4964# <make local source code changes>
    5065vim ...
    51 
    52 # fetch all branches from all remotes
    53 git fetch --all
    54 git pull
    55 
    56 # list existing branches
    57 git branch -a
    58 
    59 # create new local branch (pick a new name for feature_branch_name)
    60 git checkout -b feature_branch_name
    6166
    6267# list local changes