Git與GitHub的使用 上傳檔案與資料夾

2021-08-09 23:41:29 字數 790 閱讀 2270

1. 進入乙個非空的資料夾下,初始化本地倉庫

git init
2. 設定名稱與郵箱
git config --global user.name "liu***x"

git config --global user.email "liu***x@***.com"

3. 向快取區新增檔案/資料夾
git add ./資料夾/資料夾/***.cpp
4. 儲存到本地倉庫
git commit -m "first commit"

#-m之後的是對本次提交的描述

5. 1–4步和github沒什麼關係,第5步往後才是推送至遠端倉庫即github。

新增遠端倉庫,注意這裡不要採用https的方式,要採用git的方式。

git remote add origin [email protected]:你的gitbub的使用者名稱/倉庫名.git
若你使用了
git remote add origin 你的gitbub的使用者名稱/倉庫名.git
這種方式,那麼你每次push時都要輸入使用者名稱和密碼。

這時可以採用

git remote rm origin
進行移除https的origin,再重新新增git方式的遠端倉庫

6. 推送至遠端倉庫

git push -u origin master
7. 以後使用時,直接從3開始,3-4-6,不用每次都重新配置。

使用Git上傳專案至Github

首先,需要進入到github的自己 庫中,需進行建立乙個檔案目錄,下圖是建立好專案空間後的截圖 如 git init git commit am commit git remote add origin git pull origin master git push u origin master ...

使用Git上傳檔案至Github

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

使用git上傳檔案到github

1.點選 clone or download 並複製其中提供的位址 2.在本地環境下安裝好git之後會見到git bash.exe 和 git cmd.exe,在這裡我們使用git bash.exe 3.輸入命令 git clone xx xx指剛才複製的位址 把github上面的倉庫轉殖到本地,這...