-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from belgattitude/develop
Merge change from upstream 7.1.3
- Loading branch information
Showing
29 changed files
with
2,270 additions
and
2,097 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Upstream notes | ||
|
||
## CVS | ||
|
||
### Checkout release | ||
|
||
```shell | ||
cvs -z3 -d:pserver:[email protected]:/cvsroot/php-java-bridge co -P php-java-bridge | ||
``` | ||
|
||
### Export specific branch | ||
|
||
```shell | ||
cvs -z3 -d:pserver:[email protected]:/cvsroot/php-java-bridge export -d pjb7.0.1 -r Release_7-0-1 php-java-bridge | ||
``` | ||
|
||
or head | ||
|
||
```shell | ||
cvs -z3 -d:pserver:[email protected]:/cvsroot/php-java-bridge export -d pjb-head -r HEAD php-java-bridge | ||
``` | ||
|
||
### List releases | ||
|
||
This command list all branches on the original sourceforge repo | ||
|
||
```shell | ||
cvs -Q -d :pserver:[email protected]:/cvsroot/php-java-bridge rlog -h php-java-bridge | awk -F"[.:]" '/^\t/&&$(NF-1)==0{print $1}' | sort -u | ||
``` | ||
|
||
You can optionally list all tags: | ||
|
||
```shell | ||
cvs -Q -d :pserver:[email protected]:/cvsroot/php-java-bridge rlog -h php-java-bridge | awk -F"[.:]" '/^\t/&&$(NF-1)!=0{print $1}' | sort -u | ||
``` | ||
|
||
> Prefer using branches instead of tags for the sourceforge release. Not every release was tagged. | ||
### Compare changes | ||
|
||
You can compare changes made on releases, first checkout head and run: | ||
|
||
For changed files: | ||
|
||
```shell | ||
cvs diff -N -c -r Release_7-0-1 -r HEAD > pjb701-head.diff | ||
``` | ||
|
||
For rdiff summary: | ||
|
||
```shell | ||
cvs rdiff -s -r Release_7-0-1 -r HEAD php-java-bridge > rdiff-701-head-summary.txt | ||
``` | ||
|
||
## Example | ||
|
||
### 7.0.1 to HEAD | ||
|
||
```shell | ||
# Save head in directory ./pjb-head | ||
cvs -z3 -d:pserver:[email protected]:/cvsroot/php-java-bridge export -d pjb-head -r HEAD php-java-bridge | ||
|
||
``` |
Oops, something went wrong.