第一步: 先進入到專案資料夾中
$ cd /z/gssznb/*/*
第二步:將專案資料夾初始化
$ git init
第三步:將檔案新增到版本庫中,不要拉下最後乙個 點 ,表示新增所有得檔案
git add .
第四步:使用git commit 提交到倉庫 引號中表示為提交說明
git commit -m 'first commit'
第五步: 關聯到遠端倉庫
git remote add origin 你的遠端庫位址
第六步: 獲取遠端庫與本地同步合併(如果遠端庫不為空必須做這一步,否則後面的提交會失敗)
$ git pull --rebase origin master
第七步: 把本地庫的內容推送到遠端,使用 git push命令,實際上是把當前分支master推送到遠端。執行此命令後會要求輸入使用者名稱、密碼,驗證通過後即開始上傳。
git push -u origin master
$ git commit -m 'first commit'
*** please tell me who you are.
run git config --global user.email "[email protected]"
git config --global user.name "your name"
to set your account's default identity.
omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'gssznb@gssznb.(none)')
解決方式:
找到專案工程資料夾中的 .git資料夾。找到之後開啟config檔案。在最後加上一句話
[user]
email=your email
name=your name
貼上我自己的修改方式
[user]
email = [email protected]
name = gssnb
$ git pull --rebase origin master
warning: no common commits
remote: enumerating objects: 3, done.
remote: counting objects: 100% (3/3), done.
remote: compressing objects: 100% (2/2), done.
remote: total 3 (delta 0), reused 0 (delta 0)
unpacking objects: 100% (3/3), done.
from
* branch master -> fetch_head
* [new branch] master -> origin/master
first, rewinding head to replay your work on top of it...
解決方式 :
後來發現原來是 提交到版本庫中的檔案沒有沒有提交到 分支中,還在暫存區
所以執行
git commit -m 'xx' 就行了
本地專案上傳到git
前提 1 本地電腦已經安裝好git,正常使用git命令 2 已經在git上建立對應倉庫 先進入專案資料夾,通過命令 git init 把這個目錄變成git可以管理的倉庫 git init 把檔案新增到版本庫中,使用命令 git add 新增到暫存區裡面去,不要忘記後面的小數點 意為新增資料夾下的所有...
如何用命令將本地專案上傳到git
1 先進入專案資料夾 通過命令 git init 把這個目錄變成git可以管理的倉庫 git init 2 把檔案新增到版本庫中,使用命令 git add 新增到暫存區裡面去,不要忘記後面的小數點 意為新增資料夾下的所有檔案 git add 3 用命令 git commit告訴git,把檔案提交到倉...
如何用命令將本地專案上傳到git
1 先進入專案資料夾 通過命令 git init 把這個目錄變成git可以管理的倉庫 git init2 把檔案新增到版本庫中,使用命令 git add 新增到暫存區裡面去,不要忘記後面的小數點 意為新增資料夾下的所有檔案 git add 3 用命令 git commit告訴git,把檔案提交到倉庫...