Git与GitHub学习笔记(五)一次提交失败的记录

简介: 代码已经跟踪了,添加注释说明,但是总是添加不了error: pathspec 'live-page'' did not match any file(s) known to git.重复了好多遍,最后发现代码还是没有提交D:\wamp64\www\study-line>git commi...

代码已经跟踪了,添加注释说明,但是总是添加不了

error: pathspec 'live-page'' did not match any file(s) known to git.

重复了好多遍,最后发现代码还是没有提交

D:\wamp64\www\study-line>git commit -m 'add live-page'
error: pathspec 'live-page'' did not match any file(s) known to git.

D:\wamp64\www\study-line>git add ./

D:\wamp64\www\study-line>git push origin develop
Everything up-to-date

 最后查看了一下当前状态

继续,按照这个总算是提交成功了

D:\wamp64\www\study-line>git status
On branch develop
Your branch is up-to-date with 'origin/develop'.
Changes to be committed:
  (use "git reset HEAD <file>..." to unstage)

        modified:   application/backend/view/common/sidebar.html
        modified:   application/backend/view/linux_shell/internalStorage.html
        modified:   application/backend/view/live/vodEdit.html
        modified:   application/backend/view/live/vodManage.html

D:\wamp64\www\study-line>git reset ./
Unstaged changes after reset:
M       application/backend/view/common/sidebar.html
M       application/backend/view/linux_shell/internalStorage.html
M       application/backend/view/live/vodEdit.html
M       application/backend/view/live/vodManage.html

D:\wamp64\www\study-line>git status
On branch develop
Your branch is up-to-date with 'origin/develop'.
Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git checkout -- <file>..." to discard changes in working directory)

        modified:   application/backend/view/common/sidebar.html
        modified:   application/backend/view/linux_shell/internalStorage.html
        modified:   application/backend/view/live/vodEdit.html
        modified:   application/backend/view/live/vodManage.html

no changes added to commit (use "git add" and/or "git commit -a")

D:\wamp64\www\study-line>git add ./

D:\wamp64\www\study-line>git commit -m "add CDN page"
[develop 0be7d2a] add CDN page
 4 files changed, 9 insertions(+), 14 deletions(-)

D:\wamp64\www\study-line>git push origin develop
Counting objects: 12, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (12/12), done.
Writing objects: 100% (12/12), 1.09 KiB | 0 bytes/s, done.
Total 12 (delta 11), reused 0 (delta 0)
remote: Resolving deltas: 100% (11/11), completed with 11 local objects.
remote: This repository moved. Please use the new location:
remote:   https://github.com/Tinywan/study-line.git
To https://github.com/Tinywan/study-line.git
   283c67f..0be7d2a  develop -> develop

 

目录
相关文章
|
20天前
|
网络安全 开发工具 git
解决fatal:remote error:You can’t push to git://github.com/username/*.g
通过上述诊断与修复步骤,绝大多数的推送错误都能得到有效解决,确保您的Git工作流顺畅无阻。
23 1
|
1月前
|
Unix Shell 网络安全
git学习六:(bug总结)git@github.com: Permission denied (publickey).等
本文是关于解决在使用Git和GitHub时遇到的“git@github.com: Permission denied (publickey)”错误的指南。文章提供了详细的步骤,包括确认SSH Agent运行状态、检查密钥配置、确保密钥匹配、验证仓库URL、检查权限和代理设置,以及配置SSH文件。这些步骤帮助用户诊断并解决SSH认证问题。
84 0
|
2月前
|
开发工具 git 开发者
掌握版本控制的艺术:Git 与 GitHub 的高效使用指南
在软件开发中,版本控制对于代码管理和团队协作至关重要。本文详细介绍了 Git 的核心概念与命令,包括初始化、创建仓库、文件跟踪、分支管理和远程仓库操作。同时,探讨了如何利用 GitHub 进行项目组织、代码审查及自动化工作流。通过遵循最佳实践,如频繁提交、清晰的信息记录和合理使用分支,开发者可以提升工作效率和团队协作能力,确保项目的持续成功。
|
2月前
|
Shell 网络安全 开发工具
Git,GitHub,Gitee&IDEA集成Git
Git提交项目到GitHub简洁版、版本控制、安装、常用命令、分支、团队协作机制、Github、Gitee远程仓库、IDEA集成Git、IDEA集成Github、IDEA集成Gitee
Git,GitHub,Gitee&IDEA集成Git
|
3月前
|
安全 Linux 开发工具
Git学习笔记
这篇文章是一份Git学习笔记,涵盖了Git的基本命令、工作流程、项目搭建、文件状态管理,以及如何使用码云和IDEA进行版本控制操作。
Git学习笔记
|
2月前
|
Shell 网络安全 开发工具
fatal: unable to access 'https://github.com/wolfcw/libfaketime.git/': Encountered end of file
fatal: unable to access 'https://github.com/wolfcw/libfaketime.git/': Encountered end of file
|
4月前
|
网络安全 开发工具 git
【git】解决git报错:ssh:connect to host github.com port 22: Connection timed out 亲测有效
【git】解决git报错:ssh:connect to host github.com port 22: Connection timed out 亲测有效
1098 1
|
4月前
|
存储 安全 开发工具
Git学习笔记 三个区域、文件状态、分支、常用命令
理解并掌握这些概念和命令,对于有效地使用Git来管理项目源代码是至关重要的。Git的强大功能支持了复杂的开发工作流程,而良好的Git实践能够极大地提高团队的协作效率。随着实践的增多,对于Git更深层次的功能和最佳实践的理解也会随之增长,进一步加强你作为一个软件开发者的能力。
70 0
|
5月前
|
Shell 测试技术 网络安全
【GIT】如何在GitHub上向一个开源项目贡献代码?
【GIT】如何在GitHub上向一个开源项目贡献代码?
68 5
|
5月前
|
开发工具 git
【已解决】error: failed to push some refs to ‘git@github.com:BATdalao/Github-green.git‘
【已解决】error: failed to push some refs to ‘git@github.com:BATdalao/Github-green.git‘