Git 上傳檔案至GitHub步驟簡介

2021-10-07 05:11:15 字數 1216 閱讀 2494

① 進入待傳資料夾後,右鍵,git bash here

git init    // 初始化倉庫

git add . // 將所有檔案新增到倉庫

git commit -m "提交介紹"

② 如果git add .報錯,檢查是否檔案或資料夾被占用

到github新建倉庫並複製倉庫位址

git remote add origin [email protected]:michaelliao/learngit.git關聯遠端庫

(把[email protected]:michaelliao/learngit.git換成自己的遠端倉庫位址)

git pull --rebase origin master進行**合併【注:pull=fetch+merge]

git push -u origin master把本地庫的所有內容推送到遠端庫上

① 進入待傳資料夾後,右鍵,git bash here

git add test.cpp  // 將test.cpp檔案新增到倉庫

git commit -m "提交介紹"

② 回車後,輸入使用者名稱,回車,輸入使用者密碼。

或者:git remote add origin [email protected]:michaelliao/learngit.git關聯遠端庫

(把[email protected]:michaelliao/learngit.git換成自己的遠端倉庫位址)

git push -u origin master把本地庫的所有內容推送到遠端庫上

git checkout -b djtest    //建立並切換到分支djtest這個branch  

git push origin djtest:djtest //推送本地的djtest(冒號前面的)分支到遠端origin的djtest(冒號後面的)分支(沒有會自動建立)

檢視遠端分支:

git fetch

git branch -a

檢視本地分支:

git branch

切換分支:

git checkout -b djbranch origin/djbranch

使用Git上傳檔案至Github

git add 新增當前資料夾下的所有檔案 git commit m baiduocr 引號中的內容為對該檔案的描述 然後在之前git bash here 的視窗,輸入命令 git remote add origin注意!如果出現錯誤 fatal remote origin already exis...

使用git 將檔案上傳至GitHub

上傳至github 遠端倉庫 git 中全域性設定使用者名稱 郵箱的操作如下,當然這一切的前提條件是已經安裝好git 的客戶端 程式。git config list git config user.name git config user.email git config global user.n...

Git上傳專案至GitHub

1 先在github上建立乙個git倉庫,複製該github路徑 2 用cmd進入乙個目錄 git clone github路徑 從github上直接clone乙個工程,目錄生成工程目錄 3 拷貝自己的原始碼放入該工程目錄中 4 cmd進入該工程目錄。以下git命令,也是可用於修改更新提交 git ...