github 本地git上傳和刪除檔案

2021-08-29 20:34:55 字數 510 閱讀 6690

提交**

$ git init                               # 初始化 git 專案

$ git add -a                             # 新增全部檔案到 git 

$ git commit -am "first commit"          # 提交新增的檔案

$ git remote add origin [email protected]:yueruitao/weather.git  # 設定遠端位址

$ git push -u origin master              # 將提交推送到遠端倉庫

刪除檔案和資料夾

git rm -r src/weather//-r是遞迴刪除 如果只刪除檔案不用加-r

git commit -m "遞迴刪除weather資料夾"

git push -u origin master

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...

git 上傳本地專案到GitHub

1.githup上建立倉庫 注 可以通過 gitignore檔案指定不需要上傳的檔案或資料夾 gitignore檔案需要在git bash下通過touch命令建立 gitignore檔案 不需要的資料夾 target idea 不需要的配置檔案 wechat.iml 位置 2 初始話本地專案 git...