iT邦幫忙

0

二份檔案上傳到同一個git repository

  • 分享至 

  • xImage

我的repository上原本有一個專案,但是在前幾天,我在電腦中的檔案遺失,所以從github下載zip(不是用git clone),結果我做完新進度後要push上去,打了push才發現它把這個資料夾看成一份新的資料(但是路徑、檔名都一樣),請問我要怎麼把它push到同一個repository?

ccutmis iT邦高手 2 級 ‧ 2023-03-02 21:56:54 檢舉
用git clone 把 repo 拉到本地端,再把你這幾天修改的東西複制貼上蓋過剛剛拉到本地端的檔案,然後 1. add 2. commit 3. push 這樣是不是會簡單一點?
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

0
ted_chou12
iT邦新手 5 級 ‧ 2023-03-03 10:09:41

進你的新資料夾: 
git init .
git remote add origin git://path(改成路徑)
git add .
git commit -m 'message'
git push origin branch (改成 branch

如果改得都是正確的話,直接推應該沒問題的。

我要發表回答

立即登入回答