Changes between Version 3 and Version 4 of WikiStart
- Timestamp:
- 08/17/2016 01:42:12 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v3 v4 14 14 cd resistance 15 15 }}} 16 17 Edit source files and commit your changes: 18 19 {{{ 20 echo "# A change!" >> main.py 21 bzr commit -m 'My first change' 22 }}} 23 24 Your changes are only on your local branch at this point. If you'd like to submit them upstream, do this: 25 26 {{{ 27 bzr submit -o my-changes.patch 28 }}} 29 30 Then send `my-changes.patch` to dsowen@fugue88.ws. 31 32 To get the latest changes from upstream, do this: 33 34 {{{ 35 bzr merge 36 # Resolve any conflicts in your text editor, then: 37 bzr commit 38 }}}