https://github.com/couchbase/docs-kafka
Couchbase Kafka connector docs (asciidoc)
https://github.com/couchbase/docs-kafka
connector-sdk docs sdk
Last synced: 4 months ago
JSON representation
Couchbase Kafka connector docs (asciidoc)
- Host: GitHub
- URL: https://github.com/couchbase/docs-kafka
- Owner: couchbase
- License: other
- Created: 2024-06-14T18:06:38.000Z (about 2 years ago)
- Default Branch: release/4.3
- Last Pushed: 2026-01-20T14:26:30.000Z (5 months ago)
- Last Synced: 2026-01-20T22:51:44.145Z (5 months ago)
- Topics: connector-sdk, docs, sdk
- Homepage:
- Size: 576 KB
- Stars: 0
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= docs-kafka
The all new all-singing Kafka Connector docs project, extracted
from https://github.com/couchbase/kafka-connect-couchbase
== Technical notes on Extraction
[source,console]
--
brew install git-filter-repo
# download *new* copy
gh repo clone couchbase/kafka-connect-couchbase
git clone kafka-connect-couchbase docs-kafka
cd docs-kafka
# checkout all the different release tags in turn
# remove noise from millions of tags
git remote rm origin
git branch -m master main
git filter-repo --subdirectory-filter docs/ --refs main release/4.0 release/4.1 release/4.2 release/4.3 release/alder release/cypress
# run filter-repo again with --force
# we know this is OK this time, because this *is* a new checkout!
# create README.adoc
git add README.adoc
git commit -m "AV-80236: add README"
git remote add origin git@github.com:couchbase/docs-kafka.git
git push -u origin main
--