-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 4828 b: refs/heads/master c: da28438 h: refs/heads/master v: v3
- Loading branch information
Anton Altaparmakov
committed
May 4, 2005
1 parent
2f1feff
commit aa68d9f
Showing
4,826 changed files
with
155,353 additions
and
312,646 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 1fa4aad496b9c96fcde6c8f905a43ae6733e5a79 | ||
refs/heads/master: da28438cae9a271c5c232177f81dfb243de9b7fa |
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,51 @@ | ||
bk-kernel-howto.txt: Description of kernel workflow under BitKeeper | ||
|
||
bk-make-sum: Create summary of changesets in one repository and not | ||
another, typically in preparation to be sent to an upstream maintainer. | ||
Typical usage: | ||
cd my-updated-repo | ||
bk-make-sum ~/repo/original-repo | ||
mv /tmp/linus.txt ../original-repo.txt | ||
|
||
bksend: Create readable text output containing summary of changes, GNU | ||
patch of the changes, and BK metadata of changes (as needed for proper | ||
importing into BitKeeper by an upstream maintainer). This output is | ||
suitable for emailing BitKeeper changes. The recipient of this output | ||
may pipe it directly to 'bk receive'. | ||
|
||
bz64wrap: helper script. Uncompressed input is piped to this script, | ||
which compresses its input, and then outputs the uu-/base64-encoded | ||
version of the compressed input. | ||
|
||
cpcset: Copy changeset between unrelated repositories. | ||
Attempts to preserve changeset user, user address, description, in | ||
addition to the changeset (the patch) itself. | ||
Typical usage: | ||
cd my-updated-repo | ||
bk changes # looking for a changeset... | ||
cpcset 1.1511 . ../another-repo | ||
|
||
csets-to-patches: Produces a delta of two BK repositories, in the form | ||
of individual files, each containing a single cset as a GNU patch. | ||
Output is several files, each with the filename "/tmp/rev-$REV.patch" | ||
Typical usage: | ||
cd my-updated-repo | ||
bk changes -L ~/repo/original-repo 2>&1 | \ | ||
perl csets-to-patches | ||
|
||
cset-to-linus: Produces a delta of two BK repositories, in the form of | ||
changeset descriptions, with 'diffstat' output created for each | ||
individual changset. | ||
Typical usage: | ||
cd my-updated-repo | ||
bk changes -L ~/repo/original-repo 2>&1 | \ | ||
perl cset-to-linus > summary.txt | ||
|
||
gcapatch: Generates patch containing changes in local repository. | ||
Typical usage: | ||
cd my-updated-repo | ||
gcapatch > foo.patch | ||
|
||
unbz64wrap: Reverse an encoded, compressed data stream created by | ||
bz64wrap into an uncompressed, typically text/plain output. | ||
|
Oops, something went wrong.