diff --git a/apps/git/20260228-000000/index.tsx b/apps/git/20260228-000000/index.tsx index f7d74ee..6d5fea8 100644 --- a/apps/git/20260228-000000/index.tsx +++ b/apps/git/20260228-000000/index.tsx @@ -439,7 +439,7 @@ function AppRepo({ appName, baseUrl, branch, exists, commits }: AppRepoProps) { `git push toes ${branch}`, '', '# Or if remote not yet added:', - `git remote add toes ${baseUrl}/${appName}.git`, + `git remote add toes ${baseUrl}/${appName}`, `git push toes ${branch}`, ].join('\n')} @@ -451,7 +451,7 @@ function AppRepo({ appName, baseUrl, branch, exists, commits }: AppRepoProps) {
{appName} - git clone {baseUrl}/{appName}.git + git clone {baseUrl}/{appName}
empty @@ -460,7 +460,7 @@ function AppRepo({ appName, baseUrl, branch, exists, commits }: AppRepoProps) { Push to Deploy {[ - `git remote add toes ${baseUrl}/${appName}.git`, + `git remote add toes ${baseUrl}/${appName}`, 'git push toes main', ].join('\n')} @@ -472,7 +472,7 @@ function AppRepo({ appName, baseUrl, branch, exists, commits }: AppRepoProps) { Push to create one and deploy. {[ - `git remote add toes ${baseUrl}/${appName}.git`, + `git remote add toes ${baseUrl}/${appName}`, 'git push toes main', ].join('\n')} @@ -492,11 +492,11 @@ function RepoListPage({ baseUrl, repos }: RepoListPageProps) { {[ '# Add this server as a remote and push', - `git remote add toes ${baseUrl}/.git`, + `git remote add toes ${baseUrl}/`, 'git push toes main', '', '# Or push an existing repo', - `git push ${baseUrl}/.git main`, + `git push ${baseUrl}/ main`, ].join('\n')} {repos.length > 0 && ( @@ -508,7 +508,7 @@ function RepoListPage({ baseUrl, repos }: RepoListPageProps) {
{name} - git clone {baseUrl}/{name}.git + git clone {baseUrl}/{name}