$ git commit -m "1" On branch master Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git restore <file>..." to discard changes in working directory) modified: ../../../../resources/mapper/ShareDao.xml modified: ../../../../../../target/classes/mapper/ShareDao.xml no changes added to commit (use "git add" and/or "git commit -a")
时间: 2023-12-03 07:05:49 浏览: 535
git-commit-lint-vscode:vscode一款git 规范化提交插件
5星 · 资源好评率100%
根据你提供的信息,Git告诉你在提交之前需要先将修改的文件添加到暂存区。你可以尝试按照以下步骤进行操作:
1. 使用`git status`命令检查当前修改的文件状态,确认它们确实被修改了。
2. 使用`git add <file>`命令将修改的文件添加到暂存区。在你的情况下,可以使用以下命令将两个文件都添加到暂存区:
```
git add ../../../../resources/mapper/ShareDao.xml
git add ../../../../../../target/classes/mapper/ShareDao.xml
```
3. 再次运行`git status`命令确认文件已经被添加到暂存区。
4. 最后,使用`git commit -m "1"`命令提交修改,此时应该能成功提交了。
请确保在执行提交前,所有需要提交的修改都已经被添加到暂存区。希望这能帮到你!
阅读全文