Changes between Version 55 and Version 56 of HowToGit
- Timestamp:
- 06/11/19 00:30:51 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToGit
v55 v56 47 47 48 48 {{{ 49 # updating from git server: fetch all branches from all remotes 50 git fetch --all 51 # merge updates into local master 52 git merge upstream/master 53 54 # at this point we have reached: 55 # (HEAD -> master, upstream/master) 56 57 # list existing branches 58 git branch -a 59 60 ##### Implementation of own changes 61 # create new local branch (pick a new name for feature_branch_name) 62 git checkout -b feature_branch_name 63 49 64 # <make local source code changes> 50 65 vim ... 51 52 # fetch all branches from all remotes53 git fetch --all54 git pull55 56 # list existing branches57 git branch -a58 59 # create new local branch (pick a new name for feature_branch_name)60 git checkout -b feature_branch_name61 66 62 67 # list local changes