Github沒法提交代碼如何解決?

git提交時候報錯:The file will have its original line endings in your working directory.

錯誤描述git

錯誤描述 在使用git提交的時候出現The file will have its original line endings in your working directory.錯誤,後來發現 本身再提交的時候忘記輸入git add 上傳的文件 出現了上面的錯誤,須要下面進行修改:github

1 git rm -r -f --cached ./ (刪除緩存)

2 git add . (添加該目錄下全部文件)

3 git push -u origin master (這時候提交就沒問題了)
複製代碼

初次提交的命令緩存

git init

git add README.md

git commit -m "first commit"

git remote add origin git@github.com:xxxx.git

git push -u origin master
複製代碼

Github提交出現Branch master set up to track remote branch master from origin問題,未能成功提交代碼,請問此問題如何解決?

添加到本地倉庫bash

git add .
複製代碼

添加提交描述spa

git commit -m '內容'
複製代碼

提交前先從遠程倉庫主分支中拉取請求code

git pull origin master
複製代碼

把本地倉庫代碼提交rem

git push -u origin master
複製代碼

若是先報錯:The file will have its original line endings in your working directory.再報錯Branch master set up to track remote branch master from origin

一、刪除緩存
git rm -r -f --cached ./ 

二、添加到本地倉庫
git add .

三、添加提交描述
git commit -m '內容'

四、提交前先從遠程倉庫主分支中拉取請求
git pull origin master

五、把本地倉庫代碼提交
git push -u origin master
複製代碼
相關文章
相關標籤/搜索