{"id":22920182,"url":"https://github.com/xgqfrms/23-design-patterns-app","last_synced_at":"2026-04-11T09:06:44.331Z","repository":{"id":39068620,"uuid":"269123544","full_name":"xgqfrms/23-design-patterns-app","owner":"xgqfrms","description":"23 Design Patterns App","archived":false,"fork":false,"pushed_at":"2023-03-05T05:16:12.000Z","size":53777,"stargazers_count":2,"open_issues_count":22,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-01T13:32:48.118Z","etag":null,"topics":["23-design-patterns-app","app","dart","design-patterns","electron","flutter","javascript","react","react-native","ssr","taro","typescript","vue","web-app"],"latest_commit_sha":null,"homepage":"https://23-design-patterns-app.xgqfrms.xyz","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xgqfrms.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2020-06-03T15:22:31.000Z","updated_at":"2022-04-03T13:51:07.000Z","dependencies_parsed_at":"2025-02-07T08:37:46.955Z","dependency_job_id":null,"html_url":"https://github.com/xgqfrms/23-design-patterns-app","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/xgqfrms/23-design-patterns-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xgqfrms%2F23-design-patterns-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xgqfrms%2F23-design-patterns-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xgqfrms%2F23-design-patterns-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xgqfrms%2F23-design-patterns-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xgqfrms","download_url":"https://codeload.github.com/xgqfrms/23-design-patterns-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xgqfrms%2F23-design-patterns-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31674633,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T08:18:19.405Z","status":"ssl_error","status_checked_at":"2026-04-11T08:17:08.892Z","response_time":54,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["23-design-patterns-app","app","dart","design-patterns","electron","flutter","javascript","react","react-native","ssr","taro","typescript","vue","web-app"],"created_at":"2024-12-14T07:14:40.730Z","updated_at":"2026-04-11T09:06:44.302Z","avatar_url":"https://github.com/xgqfrms.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 23 Design Patterns App\n\nhttps://23-design-patterns-app.xgqfrms.xyz/\n\n\u003e 不同分支 git branch\n\n```sh\n$ git branch --list\n\n```\n\n```sh\n# create branch\n$ git branch web-app\n$ git branch desktop-app\n$ git branch rn-app\n$ git branch flutter-app\n$ git branch ssr-app\n$ git branch pwa-app\n$ git branch amp-app\n$ git branch taro-app\n\n# checkout branch\n$ git checkout branch web-app\n$ git checkout branch desktop-app\n# react-native\n$ git checkout branch rn-app\n# flutter\n$ git checkout branch flutter-app\n$ git checkout branch ssr-app\n$ git checkout branch pwa-app\n$ git checkout branch amp-app\n$ git checkout branch taro-app\n\n\n```\n\n```sh\n$ git checkout branch flutter-app\nerror: pathspec 'branch' did not match any file(s) known to git\nerror: pathspec 'flutter-app' did not match any file(s) known to git\n\n$ git branch -d flutter-app\n$ git branch -D flutter-app\n\n```\n\n```sh\n$ git remote add new-remote-repo https://github.com/xgqfrms/23-design-patterns-app.git\n\n$ git remote add new-remote-repo https://bitbucket.com/user/repo.git \n# Add remote repo to local repo config \n$ git push crazy-experiment\n# pushes the crazy-experiment branch to new-remote-repo\n\n$ git branch -d crazy-experiment\n\n```\n\n## git\n\n```sh\n# list all branch(local)\n$ git branch --list\n$ git branch -l\n# OR\n$ git branch\n\n# list all remote branches\n$ git branch -a\n# Q === quit\n\n# create branch\n# $ git checkout -b \u003cbranch_name\u003e\n$ git checkout -b test\n# OR\n# $ git branch \u003cbranch_name\u003e\n$ git branch test\n\n# delete branch\n# -d safe delete\n# $ git branch -d \u003cbranch_name\u003e\n$ git branch -d test\n# Deleted branch test (was 686c96b).\n\n# -D force delete\n# $ git branch -D \u003cbranch_name\u003e\n$ git branch -D test\n\n# rename the current branch\n# $ git branch -m \u003cbranch\u003e\n$ git branch -m test\n\n# change branch\n$ git checkout branch flutter-app\n\n```\n\n```sh\n# creating remote branch\n\n# Add remote repo to local repo config\n# $ git remote add new-remote-repo https://github.com/user/repo.git\n$ git remote add new-remote-repo https://github.com/xgqfrms/test.git\n\n# push the test branch to new-remote-repo\n$ git push \u003cnew-remote-repo\u003e test\n\n```\n\nhttps://www.atlassian.com/git/tutorials/using-branches\n\n```code\n  flutter-app\n  test\n* master\n\n```\n\n```code\n  flutter-app\n  test\n* master\n  remotes/origin/HEAD -\u003e origin/master\n  remotes/origin/gh-pages\n  remotes/origin/master\n\n```\n## web app\n\n\u003e React + Redux + TypeScript\n\n## desktop app\n\n\u003e Electron\n\n## react native app\n\n\u003e React Native\n\n## flutter app\n\n\u003e Flutter + Dart\n\n## SSR app / PWA app / AMP app\n\n\u003e Nest.js / Nuxt.js\n\n## 小程序\n\n\u003e Taro\n\n## app project content\n\n1. menu / navigator\n2. preview / details\n3. codes\n4. share\n\n## 23 种设计模式 APP\n\nhttps://www.cnblogs.com/xgqfrms/p/12904917.html\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxgqfrms%2F23-design-patterns-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxgqfrms%2F23-design-patterns-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxgqfrms%2F23-design-patterns-app/lists"}