2013-04-08 02:12 UTC+0200 Viktor Szakats (harbour syenar.net)

* config/postinst.hb
    * minor

  * doc/howtorep.txt
  * README.md
    ! updated link to hbmk2 doc
    * updated steps for committing to emphasis in bin/commit
      script than trying to describe some of the rules
This commit is contained in:
Viktor Szakats
2013-04-08 02:14:06 +02:00
parent df3616a148
commit fe9b84e2c2
4 changed files with 22 additions and 21 deletions

View File

@@ -10,6 +10,16 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2013-04-08 02:12 UTC+0200 Viktor Szakats (harbour syenar.net)
* config/postinst.hb
* minor
* doc/howtorep.txt
* README.md
! updated link to hbmk2 doc
* updated steps for committing to emphasis in bin/commit
script than trying to describe some of the rules
2013-04-08 00:58 UTC+0200 Viktor Szakats (harbour syenar.net)
* bin/commit.hb
+ do not overwrite clipboard content if it already

View File

@@ -53,12 +53,13 @@ There are several ways to help making Harbour better:
- Submit a change:
1. Fork Harbour
2. Create a branch: `git checkout -b my_mod`
3. Commit your changes: `git commit -am "Added my feature"`
4. Push to the branch: `git push origin my_mod`
5. Open a Pull Request
3. Do commit pre-check and new log entry: `hbrun bin/commit`
4. Commit your changes: `git commit -am "Added my feature"`
5. Push to the branch: `git push origin my_mod`
6. Open a Pull Request
- Always use the same coding/formatting style as you find in
the files you're patching. The easiest way to achieve this
is to use these commands to format your sources:
the files you're modifying. The easiest way to achieve this
is to use these commands to format the sources:
$ uncrustify -c <harbour_dir>/bin/harbour.ucf <source(.c|.h)>
$ <harbour_dir>/bin/hbformat <source(.prg|.hb|.ch)>
@@ -112,7 +113,7 @@ Download source archive from this page and unpack:
You'll need Git version control software installed on your system,
and issue this command:
git clone https://github.com/harbour/core.git harbour
git clone https://github.com/harbour/core.git harbour-core
You can get subsequent updates using this command:
@@ -1341,7 +1342,7 @@ For all platforms you'll need two things:
Use hbmk2 to build your app from source. It's recommended to put
it in the PATH (f.e. by using `set PATH=C:\harbour\bin;%PATH%` on Windows).
See hbmk2 [documentation, with examples](utils/hbmk2/hbmk2.md).
See hbmk2 [documentation, with examples](utils/hbmk2/doc/hbmk2.en.md).
# Debugging Options

View File

@@ -80,8 +80,8 @@ PROCEDURE Main( ... )
/* public Harbour scripts */
FOR EACH tmp IN { ;
"bin/3rdpatch.hb", ;
"bin/commit.hb", ;
"bin/check.hb", ;
"bin/commit.hb", ;
"bin/harbour.ucf" }
mk_hb_FCopy( tmp, GetEnvC( "HB_INSTALL_BIN" ) + hb_ps() )
NEXT

View File

@@ -31,8 +31,8 @@ by Viktor Szakats
1) Make the changes in the source
2) Do a 'git pull'
3) Resolve any conflicts
4) Run 'hbrun bin/commit' to create new ChangeLog.txt entry
with timestamp and list of modified files
4) Run 'hbrun bin/commit' to check any commit pre-checks
and to create new ChangeLog.txt entry template
5) Edit ChangeLog.txt with a text editor (do not use notepad.exe)
6) Copy the last ChangeLog.txt entry to the clipboard
If it's a single atomic change, it's better to copy only
@@ -45,13 +45,6 @@ by Viktor Szakats
11) Do a 'git push' to publish your changes online to the
master repository
Important notes:
1) *Always* add a ChangeLog.txt entry when committing.
2) When adding a new file to the repository, always use lower case 8.3
filenames, do not use tabs, trailing spaces, BOM and EOF markers
in the file, end the file with a newline.
1.3 Here's how to format your ChangeLog.txt entries
===================================================
by Viktor Szakats
@@ -73,13 +66,10 @@ by Viktor Szakats
- Leave an empty line after the body.
- Do not use tabs, trailing spaces, BOM and EOF markers
in the file, end the file with a newline.
1.4 Here's how to use the Git server in read-only mode
======================================================
git clone git://github.com/harbour/core.git harbour
git clone git://github.com/harbour/core.git harbour-core
1.5 Things to do to avoid damaging the Git repository
=====================================================