Skip to content

docs: correct branch naming example (#474)#525

Open
zerone0x wants to merge 2 commits intortk-ai:developfrom
zerone0x:fix/docs-branch-naming-474
Open

docs: correct branch naming example (#474)#525
zerone0x wants to merge 2 commits intortk-ai:developfrom
zerone0x:fix/docs-branch-naming-474

Conversation

@zerone0x
Copy link
Contributor

Summary

  • replace the branch creation example with a slash-based name that git accepts
  • keep the branch naming guidance consistent throughout the document

Testing

  • not run (docs only)

Fixes #474

@pszymkowiak
Copy link
Collaborator

LGTM — straightforward docs fix, branch naming examples now use valid git branch names.

@aeppling for merge.

@CLAassistant
Copy link

CLAassistant commented Mar 20, 2026

CLA assistant check
All committers have signed the CLA.

zerone0x and others added 2 commits March 21, 2026 08:14
Co-Authored-By: Claude <noreply@anthropic.com>
Signed-off-by: zerone0x <hi@trine.dev>
@zerone0x zerone0x force-pushed the fix/docs-branch-naming-474 branch from 945528b to c253c01 Compare March 21, 2026 07:15
@zerone0x
Copy link
Contributor Author

already signed the CLA, plz check!

@pszymkowiak
Copy link
Collaborator

Hi! Two things needed before we can review:

  1. Retarget to develop — this PR targets master, but all PRs should target develop. You can change the base branch in the PR settings (right sidebar).
  2. Sign the CLA — if not already done, please sign at https://cla-assistant.io/rtk-ai/rtk

Thanks!

@zerone0x zerone0x changed the base branch from master to develop March 26, 2026 13:21
@zerone0x
Copy link
Contributor Author

Hi! Two things needed before we can review:

  1. Retarget to develop — this PR targets master, but all PRs should target develop. You can change the base branch in the PR settings (right sidebar).
  2. Sign the CLA — if not already done, please sign at cla-assistant.io/rtk-ai/rtk

Thanks!

Done!

@aeppling
Copy link
Contributor

Hey

We are cleaning up the codebase and improving the project structure for better onboarding. As part of this effort, PR #826 reorganizes src/ from a flat layout into subfolders.

No logic changes — only file moves and import path updates.

What you need to do

Rebase your branch on develop when receiving this comment:

git fetch origin && git rebase origin/develop

Git detects renames automatically. If you get import conflicts, update the paths:

use crate::git;        // now: use crate::cmds::git::git;
use crate::tracking;   // now: use crate::core::tracking;
use crate::config;     // now: use crate::core::config;
use crate::init;       // now: use crate::hooks::init;
use crate::gain;       // now: use crate::analytics::gain;

Need help rebasing? Tag @aeppling

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Branch naming guidelines in CONTRIBUTING.md are illegal

4 participants