Changes between Version 16 and Version 17 of Submitting/General
- Timestamp:
- 12/04/19 00:01:39 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Submitting/General
v16 v17 14 14 * Vector maps are always considered completely. 15 15 16 == Submitting code to SVN == 17 18 Be sure to develop on top of the LATEST GRASS code (which is in our SVN repository). You can re-check before submission with `svn diff`: 19 20 Be sure to create unified (`diff -u`) format. "Plain" diffs (the default format) are risky, because they will apply without warning to code which has been substantially changed; they are also harder to read than unified. 21 22 Such diffs should be made from the top-level directory, e.g. `svn diff display/d.vect/main.c`; that way, the diff will include the pathname rather than just an ambiguous `main.c`. 16 == Submitting code == 17 18 Be sure to develop on top of the *latest* GRASS GIS code which is in a Git repository on !GitHub. See [https://github.com/OSGeo/grass/blob/master/CONTRIBUTING.md CONTRIBUTING] file there. 23 19 24 20 === Commit messages === … … 81 77 (commit messages are not for opening discussions or general communication) 82 78 }}} 79 80 === Creating (legacy) diffs === 81 82 Be sure to create unified (`diff -u`) format. "Plain" diffs (the default format) are risky, because they will apply without warning to code which has been substantially changed; they are also harder to read than unified. 83 84 Such diffs should be made from the top-level directory, e.g. `git diff display/d.vect/main.c`; that way, the diff will include the pathname rather than just an ambiguous `main.c`. 83 85 84 86 === SVN Properties ===