把小遊戲的**和部落格遷移到github上,路徑是:
506 mkdir faithhero
508 cd faithhero
510 git init
// 拷貝檔案到這個目錄下,可以包含資料夾
515 git add *
517 git commit -m 'first commit'
518 ls -a
519 pwd
520 git remote add origin
521 git push origin master
// 此處報錯,因為https的路徑填錯了,要把orgin刪掉
529 git remote remove origin
530 git remote add origin
531 git push origin master
// 此處又報錯,因為github上的版本和本地的不一致,因此要先pull
538 git pull
540 git push origin master
542 history
touch readme.md
git initgit add readme.md
git commit -m "first commit"
git remote add origin
git push -u origin master
git remote add origin
git push -u origin master
如何提交?
比如我修改了role/mainrole.cpp檔案
git clone
710 git add role/mainrole.cpp
711 git commit -m 'add return to a empty function'
712 git remote add upstream
713
git push upstream master
GitHub使用筆記
for linux 配置github 設定名字及email,用於提交時簽名。git config global user.name your name git config global user.email your email 可在主目錄下檢視配置資訊 cat gitconfig 倉庫建立 從 ...
Github使用筆記
一 git身份配置 git config global user.name tony git config global user.email tony gmali.com 二 建立 倉庫 用cd指令進入專案目錄,輸入 git init注意 1.路徑位址用 2.路徑上的資料夾名不要含中文和空格 三 ...
Github 使用筆記
常用命令 1.git bash 命令列 2.git desktop gui 3.git lfs 大檔案 檔案大於100m 儲存 當你的respo裡面有大檔案準備提交時會彈出如下錯誤,這時就需要lfs來單獨儲存你的大檔案!解決方案 1.在你的respo目錄下進入git bash,執行命令初始化該res...