在github上建立乙個新的repository。
如果是普通大小的文字(小於100m)上傳,可以輸入如下指令
git init
git add .
#. 表示新增所有檔案,也可以新增單個的檔案
git commit -m "first commit"
git remote add origin #**填寫自己repository對應的
git push -u origin master
若本地檔案中沒有readme檔案,則可能會報錯,可以在push之前執行如下指令
git pull --rebase origin master
若資料夾中的檔案修改或者有新的檔案上傳,執行如下指令
git add .
git commit -m "new commit"
git push origin master
在同乙個repository獲取遠端檔案時,可使用如下指令
git add .
#將之前的檔案新增到暫存區
git pull origin master
同步本地資料到遠端時,可以先將遠端倉庫檔案同步到本地,再將本地修改的檔案同步到遠端倉庫,採用如下指令
git add .
git pull origin master
git add .
git commit -m "change file"
git push origin master
如果是超過100m的文字,需要採用git-lfs,也許會在之後總結出來~先記錄一下已經查到的資料:
github如何上傳超過100m的大檔案
managing large files
上傳本地檔案到GitHub
前段時間將自己的專案通過命令列的方式上傳至github遇到一些問題,也總結了一些經驗,在這裡分享給大家乙個上傳步驟 第一步 建立你的git倉庫 命令列cd到你的專案資料夾裡面,執行git命令建立倉庫 git init第二步 選擇要新增進倉庫的檔案git add 如果想新增指定的檔案,就去掉.就ok了...
git 上傳本地檔案到github
git 上傳本地檔案到github 1 git config global user.name your real name 2 git config global user.email you email.address git init git add git commit m test git...
git 上傳本地檔案到github
git 上傳本地檔案到github 1 git config global user.name your real name 2 git config global user.email you email.address git init git add git commit m test git...