Intellij:"Files commited" 但未显示在 Github 中?

Intelij: "Files commited" but not showing in Github?

我已经使用 "gradlew build idea"

构建了我的项目

我将我的项目链接到 GitHub 并使用网站上的说明执行了我的 initial commit

然而,当我从我的 change lists 提交更改时,它说 "files commited" 但是当我检查我的 GitHub 存储库时,它们 在那里?

我需要做什么才能使用我在 GitHub 上的确切存储库配置到 Intelij

GitHub 是一个 git 存储网站,您将其用作远程。 git 如果需要,repos 可以完全本地化。如果你以前从未推送过,运行:

git remote add origin https://github.com/user/repo.git
git push origin master

不要使用 intellij 提交。使用命令行。

git add .
git commit -m "Your commit message"

However when I commit changes from my change lists it says "files commited" yet when I check my GitHub repository they are not there?

为了在远程存储库中看到您的文件,您必须推送它们。 提交后,文件仅在本地存储库中。

以下是您需要遵循的基本流程:

您提交的所有更改都保存在本地。因此,您需要将更改从本地推送到远程。为此,在 Local 中右键单击 master,您可以看到 Push 选项。 Please refer the attached screenshot.