Changes between Version 77 and Version 78 of DeveloperGuidelines/Git
- Timestamp:
- 12/23/13 09:47:05 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Git
v77 v78 36 36 cd web2py/applications/eden 37 37 38 # Update your working directory with latest code from Trunk39 git pull upstream38 # Update your local repository with latest code from the trunk repository on GitHub 39 git pull --rebase upstream 40 40 41 41 # Write Code … … 55 55 git commit -am "My Story: Part N" 56 56 57 # Merge latest Trunk58 git pull upstream57 # Pull in changes from trunk 58 git pull --rebase upstream 59 59 60 60 # Resolve any conflicts (see below for how)