为什么要“初始化存储库”?在 VScode 上不可用

发布于 2025-01-11 04:54:45 字数 188 浏览 0 评论 0原文

我有一个作业要求我创建一个 markdown 并将其推送到 GitHub。我的问题是“初始化存储库”没有显示。 .md 文件保存在链接到 Github 的文件夹中,但仍然无法初始化它。帮助!这是屏幕截图缺少初始化存储库

I have an assignment that require me to create a markdown and push it to GitHub. My issue is the "Initialize Repository" is not showing. The .md file is saved in the folder linked to Github but it is still can't initialize it. Help! Here is a screenshot Missing Initialize Repository

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

注定孤独终老 2025-01-18 04:54:45

据我所知,当尝试推送现有文件夹时,Initialize Repository 选项将始终丢失。解决此问题的一种方法是在感兴趣的文件夹中打开 VS Code 中的终端,然后尝试以下操作:

git init
git remote add origin YOUR_ORIGIN_URL.git
git add .
git commit -m "Initial commit"
git push -u origin master

这适用于我需要连接到 GitLab 源的每个项目。

As far as I have seen, when trying to push an existing folder, the Initialize Repository option will always be missing. One way to approach this is to open your terminal in VS Code while already within the folder of interest, and try the following:

git init
git remote add origin YOUR_ORIGIN_URL.git
git add .
git commit -m "Initial commit"
git push -u origin master

This has worked for every project I needed to connect to a GitLab origin.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文