为啥我的 package.json 文件在告诉我它已更新后没有显示在 Github 上?

Posted

技术标签:

【中文标题】为啥我的 package.json 文件在告诉我它已更新后没有显示在 Github 上?【英文标题】:Why is my package.json file not showing on Github after telling me it has been updated?为什么我的 package.json 文件在告诉我它已更新后没有显示在 Github 上? 【发布时间】:2021-06-30 09:25:12 【问题描述】:
git add .
The file will have its original line endings in your working directory   
warning: LF will be replaced by CRLF in package.json. 
PS C:\Users\HP\OneDrive\Desktop\gg> git push origin main  
Everything up-to-date
PS C:\Users\HP\OneDrive\Desktop\gg> git pull origin main  
From https://github.com/Osomhe1/sass
 * branch            main       -> FETCH_HEAD
Already up to date.

但是 package.json 没有显示。

【问题讨论】:

您需要git commit 然后git push 将您的更改推送到远程服务器(Github) 这能回答你的问题吗? How can I upload committed changes to my GitHub repository? 来自 Github 文档:Adding a file to a repository using the command line 发布了您的问题的工作流程,如果它解决了您的目的,请点赞,以便将来对其他人有所帮助:) 【参考方案1】:

通常pushing(uploading)本地文件到github的工作流程如下:-

    git add . -> 此命令将所有文件添加到暂存区。 git commit -m " your commit message" -> 这就像拍摄更改的快照以将其保存在提交历史记录中。 git push origin master -> 该命令将本地 master 分支推送到 origin,origin 是 github 中仓库的远程 URL。

不时运行git status 是一个很好的做法,它会告诉您哪些更改需要暂存或提交。

注意:- 请检查您是否设置了上游,这意味着您已经设置了远程存储库的来源。 检查git remote -v -> 这将显示您的远程存储库的 URL 以及获取和推送。

如果不是那么git remote add URL-of-the-repostiroy

【讨论】:

【参考方案2】:

git 提交

然后

git 推送

那么它应该在你的仓库中。

【讨论】:

以上是关于为啥我的 package.json 文件在告诉我它已更新后没有显示在 Github 上?的主要内容,如果未能解决你的问题,请参考以下文章

为啥我的项目同时有 package-lock.json 和 yarn.lock 文件?

为啥不通过 package.json 安装 webpack 二进制文件?

为啥“npm install”在我的“package-lock.json”文件中为我的包添加“node_modules”前缀?

Heroku - 构建错误 - 找不到模块请求

为啥我们需要使用 package.json? [复制]

如何告诉 Prettier 忽略 package.json 文件?