Git——如何將本地項目提交至遠程倉庫(第一次)
阿新 • • 發佈:2018-07-28
使用 lac you mas src window nbsp 版本庫 自動轉換
1.(先進入項目文件夾)通過命令 git init 把這個目錄變成git可以管理的倉庫。
git init
2.把文件添加到版本庫中,使用命令 git add .添加到暫存區裏面去,不要忘記後面的小數點“.”,意為添加文件夾下的所有文件(夾)。
git add .
3.commit到主分支
git commit -m "描述"
4.登錄github,把本地倉庫提交至遠程倉庫。
接下來你要做的就是復制那個地址,然後你將本地倉庫個遠程倉庫連接起來。
git remote add origin [email protected]:yourname/倉庫名.git
5.進行第一次提交
git push -u origin master
ps: windows系統中使用git時報錯“warning: LF will be replaced by CRLF”解決方案:
$ rm -rf .git // 刪除.git $ git config --global core.autocrlf false //禁用自動轉換 //然後重新執行 $ git init $ git add .
rm -rf .git慎用!!!!原因詳見:https://www.zhihu.com/question/29438735 不小心敲了rm -rf後反應是怎樣的?
Git——如何將本地項目提交至遠程倉庫(第一次)