創建新項目
在GitHub創建新項目:
創建Git文件
(1)在需要上傳的目錄打開powershell
(2)執行命令創建隱藏的.git文件:
git init
添加用戶
項目的.gitconfig文件最后加入
[user]
name = name
email = email
否則會出現以下報錯:
Commit failed - exit code 128 received, with output: '*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
添加到Git
(1)add/rm
添加全部文件:
git add -A
添加單個文件:
git add env.txt
刪除某個文件:
git rm env.txt
git add -A
表示添加所有內容, git add .
表示添加新文件和編輯過的文件不包括刪除的文件; git add -u
表示添加編輯或者刪除的文件,不包括新添加的文件。
(2)commit
對修改的描述
git commit -m "new"
關聯倉庫
將本地倉庫關聯到github上,XXX為倉庫名
git remote add origin https://github.com/Snowstorm0/XXX.git
Push
push到github:
git push -u origin master
常見報錯
(1)add 時 報錯:
warning: LF will be replaced by CRLF in XXX
換行符錯誤,在windows下使用以下代碼修改:
git config --global core.autocrlf true
(2)add 時 報錯:
fatal: not a git repository (or any of the parent directories): .git
重新添加git:
git init
(3)commit 時 報錯:
Commit failed - exit code 128 received, with output: '*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
需要到項目的.gitconfig文件最后加入
[user]
name = name
email = email
(4)commit 時 報錯:
fatal: could not open '.git/COMMIT_EDITMSG': Permission denied
對于Windows系統可以進入.git文件(隱藏文件)刪除“COMMIT_EDITMSG”文件即可
(5)push 時 報錯:
fatal: unable to access 'https://github.com/Snowstorm0/': OpenSSL SSL_read: Connection was aborted, errno 10053
Git默認限制了push的大小,更改限制即可:
git config --global http.postBuffer 524288000
審核編輯:湯梓紅
-
文件
+關注
關注
1文章
551瀏覽量
24559 -
C++
+關注
關注
21文章
2085瀏覽量
73301 -
GitHub
+關注
關注
3文章
461瀏覽量
16232
發布評論請先 登錄
相關推薦
評論