Skip to content

Commit 5bd8472

Browse files
authored
docs: add Rebasing and Signing section to docs/sdk_users/signing.md (#558)
Signed-off-by: sankhya007 <[email protected]>
1 parent 638ee7e commit 5bd8472

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
1010
- Unified balance and transfer logging format — both now consistently display values in hbars for clarity.
1111

1212
### Added
13+
1314
- Refactored `examples/topic_create.py` into modular functions for better readability and reuse.
15+
- Add Rebasing and Signing section to signing.md with instructions for maintaining commit verification during rebase operations (#556)
1416
- Add `examples/account_id.py` demonstrating AccountId class usage including creating standard AccountIds, parsing from strings, comparing instances, and creating AccountIds with public key aliases
15-
1617
- Added Google-style docstrings to `CustomFractionalFee` class and its methods in `custom_fractional_fee.py`.
1718
- Added `dependabot.yaml` file to enable automated dependency management.
1819
- Common issues guide for SDK developers at `examples/sdk_developers/common_issues.md`

docs/sdk_developers/signing.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,16 @@ If you forgot to sign or DCO a commit:
8080
git commit --amend -S -s
8181
git push --force-with-lease
8282
```
83+
## Rebasing and Signing
84+
85+
Rebase operations will be required when your branch is behind the upstream main. See [rebasing.md](./rebasing.md) for instructions on how to keep your main branch up to date and how to rebase.
86+
87+
88+
When rebasing, you must use this command to ensure your commits remain verified:
89+
90+
```bash
91+
git rebase main -S
92+
```
8393

8494
## ✅ Final Checklist
8595

0 commit comments

Comments
 (0)