gpt4 book ai didi

linux - 如何将基于 angular-seed 的项目推送到我自己的 git 仓库?

转载 作者:太空狗 更新时间:2023-10-29 12:12:43 28 4
gpt4 key购买 nike

因此,我在本地计算机上基于 Angular-Seed 项目制作了一个小型 Web 应用程序。我从 Github 克隆了它并制作了项目,没问题。

在我从 angular-seed 根目录中删除 .git 目录和 .gitignore 文件后,我添加了所有文件/目录没有问题。运行 git status 控制台显示:

On branch master
Your branch is up-to-date with 'origin/master'.
nothing to commit, working directory clean

但是,当我添加、提交并推送到我的远程存储库时,angular-seed 目录(以及其他项目文件)没有显示。

目录映射看起来像 /home/user/my-local-repo/angular-seed/,其中所有项目文件都在 angular-seed 目录中。有人可以帮帮我吗?

最佳答案

git clone --depth=1 {angular seed repo link} mynewproject

cd 我的新项目

rm -rf.git

初始化

git remote add origin {repo 链接}

来源:https://github.com/angular/angular-seed/issues/239

然后您可能会收到 src refspec 错误,一种解决方案是:

也许您只需要做出 promise 。当我这样做时,我遇到了这个:

mkdir repo && cd repo git remote 添加源/path/to/origin.git混帐添加。哎呀!从未 promise !

git push -u origin master错误:src refspec master 不匹配。我所要做的就是:

git commit -m '初始提交'git push origin master成功!

来源:src refspec master does not match any when pushing commits in git

关于linux - 如何将基于 angular-seed 的项目推送到我自己的 git 仓库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36776653/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com