{"id":30236496,"url":"https://github.com/lokeshkvms/loki-store","last_synced_at":"2026-04-11T02:04:38.630Z","repository":{"id":309670238,"uuid":"1036695180","full_name":"LokeshKvms/loki-store","owner":"LokeshKvms","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-13T05:21:39.000Z","size":901,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-13T07:09:51.978Z","etag":null,"topics":["appwrite","nextjs","shadcn-ui","tailwindcss","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LokeshKvms.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-12T13:00:16.000Z","updated_at":"2025-08-13T05:23:14.000Z","dependencies_parsed_at":"2025-08-13T07:20:57.542Z","dependency_job_id":null,"html_url":"https://github.com/LokeshKvms/loki-store","commit_stats":null,"previous_names":["lokeshkvms/loki-store"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/LokeshKvms/loki-store","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LokeshKvms%2Floki-store","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LokeshKvms%2Floki-store/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LokeshKvms%2Floki-store/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LokeshKvms%2Floki-store/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LokeshKvms","download_url":"https://codeload.github.com/LokeshKvms/loki-store/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LokeshKvms%2Floki-store/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270506664,"owners_count":24596780,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-14T02:00:10.309Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["appwrite","nextjs","shadcn-ui","tailwindcss","typescript"],"created_at":"2025-08-15T01:02:33.221Z","updated_at":"2026-04-11T02:04:38.588Z","avatar_url":"https://github.com/LokeshKvms.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🧠 Git Workflow Guide\n\n\n## 🔧 Full Setup (from Scratch)\n\n### 📍 Step 1: Initial Setup (One-Time Only — on any one system)\n\n1. Create the project folder:\n   ```bash\n   mkdir your-project\n   cd your-project\n   git init\n   ```\n\n2. Create your first commit:\n   ```bash\n   echo \"# Your Project Title\" \u003e README.md\n   git add .\n   git commit -m \"Initial commit\"\n   ```\n\n3. Create a GitHub repo:  \n   Go to → https://github.com/new  \n   ⚠️ Do NOT check \"Initialize with README\" or \".gitignore\"\n\n4. Connect your local repo to GitHub:\n   ```bash\n   git remote add origin git@github.com:your-username/your-repo.git\n   ```\n\n5. Push initial commit to `main`:\n   ```bash\n   git branch -M main\n   git push -u origin main\n   ```\n\n✅ GitHub repo is now live.\n\n---\n\n## 🖥️ Step 2: Clone the Repo on Both Systems\n\n### 🔹 On System A\n```bash\ngit clone git@github.com:your-username/your-repo.git\ncd your-repo\n```\n\n### 🔹 On System B\n```bash\ngit clone git@github.com:your-username/your-repo.git\ncd your-repo\n```\n\n---\n\n## 🛠️ Daily Workflow (After Setup)\n\n---\n\n### 📌 From System A\n\n1. Pull the latest `main`:\n   ```bash\n   git checkout main\n   git pull origin main\n   ```\n\n2. Create a new feature branch:\n   ```bash\n   git checkout -b feat/your-feature-name-from-system-a\n   ```\n\n3. Make changes and commit:\n   ```bash\n   git add .\n   git commit -m \"feat: your message from system A\"\n   ```\n\n4. Push the branch:\n   ```bash\n   git push origin feat/your-feature-name-from-system-a\n   ```\n\n5. Merge into `main`:  \n   Either:\n   - Open a Pull Request on GitHub  \n   OR  \n   - Merge manually (if working solo):\n     ```bash\n     git checkout main\n     git pull origin main\n     git merge feat/your-feature-name-from-system-a\n     git push origin main\n     ```\n\n---\n\n### 📌 From System B\n\n1. Pull the latest `main`:\n   ```bash\n   git checkout main\n   git pull origin main\n   ```\n\n2. Create a new feature or fix branch:\n   ```bash\n   git checkout -b fix/your-fix-name-from-system-b\n   ```\n\n3. Make changes and commit:\n   ```bash\n   git add .\n   git commit -m \"fix: your message from system B\"\n   ```\n\n4. Push the branch:\n   ```bash\n   git push origin fix/your-fix-name-from-system-b\n   ```\n\n5. Merge into `main`:  \n   Either:\n   - Open a Pull Request on GitHub  \n   OR  \n   - Merge manually:\n     ```bash\n     git checkout main\n     git pull origin main\n     git merge fix/your-fix-name-from-system-b\n     git push origin main\n     ```\n\n---\n\n## 🔄 Switching Between Systems\n\nBefore starting work on a new system:\n```bash\ngit checkout main\ngit pull origin main\ngit fetch --all\n```\n\nThen either:\n- Continue work on an existing branch:\n  ```bash\n  git checkout feat/your-feature-name-from-other-system\n  ```\n- Or start a new one:\n  ```bash\n  git checkout -b feat/new-task\n  ```\n\n---\n\n## 🧹 Cleanup (Optional)\n\nAfter merging a feature/fix branch:\n```bash\ngit branch -d feat/your-feature-name     # Delete local branch\ngit push origin --delete feat/your-feature-name  # Delete remote branch\n```\n\n---\n\n## ✅ Best Practices\n\n- Always pull `main` before starting work\n- Always work in a dedicated branch (`feat/*`, `fix/*`)\n- Use meaningful commit messages\n- Merge via PRs or clean manual merges\n- Delete branches after merging\n\n---\n\n## 🏁 You're all set!\n\nThis setup gives you a clean, professional, and conflict-free workflow while switching between multiple systems.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flokeshkvms%2Floki-store","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flokeshkvms%2Floki-store","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flokeshkvms%2Floki-store/lists"}