Warning
The login code is moved to the main Zitadel repository. Follow these steps to stay up-to-date.
- Make sure your zitadel/typescript repo is in sync with the origin
- Fork the zitadel/zitadel
- Clone your Zitadel fork
git clone https://github.com/<your-owner>/zitadel.git - Change directory to your Zitadel forks root.
- Check out a new branch for your Login code changes:
git checkout -b login-move - Add your TypeScript repo Fork as a remote of your Zitadel repo fork:
git remote add login-mirror https://github.com/<your-owner>/typescript.git - Fetch your Login code into the Zitadel fork:
git fetch login-mirror <your-typescript-fork-branch> - Merge your changes into the current branch:
git subtree merge --prefix=apps/login login-mirror/<your-typescript-fork-branch> - Resolve potential conflicts, the push your changes:
git push - Read the CONTRIBUTING.md about how to develop the Login.
- Optionally open a pull request to zitadel/zitadel