我无法推送到我的GITLAB存储库我在尝试推送到我的存储库时会得到这个。几天前没有任何问题推到我的存储库。
C:\projects\304cem>git commit -m"whatever"
On branch master
Your branch is up-to-date with 'upstream/master'.
Changes not staged for commit:
modified: config/helperFunctions.js
modified: controllers/setupController.js
modified: controllers/userController.js
modified: package.json
Untracked files:
node_modules/.bin/_mocha
node_modules/.bin/_mocha.cmd
node_modules/.bin/forever
node_modules/.bin/forever.cmd
node_modules/.bin/mocha
node_modules/.bin/mocha.cmd
node_modules/forever/
node_modules/mocha/
no changes added to commit
答案 0 :(得分:0)
您的更改当前是未分阶段的,请执行git add .
暂存以进行提交。
为确保您确实已进行了更改,请执行git status
。这应该显示您提交的更改。
如果您不想为提交显式分段文件,请在提交时使用-a标志。这将自动暂存您的更改并提交。
git commit -a -m "message"