Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Supreme-Emperor-Wang/ImageAlchemy
https://github.com/Supreme-Emperor-Wang/ImageAlchemy
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/Supreme-Emperor-Wang/ImageAlchemy
- Owner: Supreme-Emperor-Wang
- License: mit
- Created: 2023-10-18T15:25:28.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-22T14:15:18.000Z (6 months ago)
- Last Synced: 2024-05-23T05:50:13.499Z (6 months ago)
- Language: Python
- Size: 12.2 MB
- Stars: 1
- Watchers: 6
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-bittensor - SN26 - **Image Alchemy** (Decentralized AI transforms image creation and art synthesis) (Registered Subnets)
README
![TensorAlchemy - Splash image](./contrib/TensorAlchemy-splash.png)
# **📢 TensorAlchemy Moves to New GitHub Repository! 🚀**
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)## [New repository url](https://github.com/TensorAlchemy/TensorAlchemy)
https://github.com/TensorAlchemy/TensorAlchemyWe're thrilled to announce that we've migrated our codebase to the new TensorAlchemy repository on GitHub. The previous repository is now archived and read-only.
Let's continue building the future of TensorAlchemy together in our new GitHub home! 🌟
All miners and validators, please follow the guide below to stay up-to-date with the latest changes and contribute to the project:
## Migration Guide
1. **Open your terminal or command prompt and navigate to your local repository directory.**
2. **List your existing remotes to see the current configured remote repository.**
```
git remote -v
```You should see the old remote repository URL listed, e.g.:
```
origin https://github.com/Supreme-Emperor-Wang/ImageAlchemy (fetch)
origin https://github.com/Supreme-Emperor-Wang/ImageAlchemy (push)
```3. **Remove the old remote repository.**
```
git remote remove origin
```4. **Add the new remote repository.**
```
git remote add origin https://github.com/TensorAlchemy/TensorAlchemy
```Or, if you prefer to use the SSH URL:
```
git remote add origin [email protected]:TensorAlchemy/TensorAlchemy.git
```5. **Verify that the new remote URL is set correctly.**
```
git remote -v
```You should see the new repository URL listed, e.g.:
```
origin https://github.com/TensorAlchemy/TensorAlchemy (fetch)
origin https://github.com/TensorAlchemy/TensorAlchemy (push)
```6. **Finally, fetch the latest changes from the new remote repository and merge them into your local branch.**
```
git fetch origin
git reset --hard origin/main
```Replace `main` with the name of the branch you want to reset to, if different.
After following these steps, your local repository should be updated to track the new `TensorAlchemy/TensorAlchemy` remote repository, and you should have the latest changes pulled from the new repository.
The TensorAlchemy Team