(补充)Github上传文件出现的错误

 

首先公示一下Github官方手册:https://help.github.com/cn/github/managing-files-in-a-repository/managing-files-on-github

很有用哦!!!

 

再来说说出现的问题:(其实也可以通过手册上面的方法提交文件,更快哈)

发现在add 文件时,commit不了,提交不上去,出现错误:

On branch master
Untracked files:

nothing added to commit but untracked files present

(补充)Github上传文件出现的错误_第1张图片

下面的文件都要传输,但是自己不需要传输啊,咋整,只能放入ignore文件中:

vim .gitignore

 将下面出现的文件全部复制进去并保存:

(补充)Github上传文件出现的错误_第2张图片

 再次提交:

git commit -m "first commit "

 哦郝,只能添加这个了,之后删除了:

git add .gitignore

成功了!

 

你可能感兴趣的:(Windows,Ubuntu)