分享至
請問一下,在例如github這一類的remote git倉儲,在創建時都會問你要不要加README.md和.gitignore 之類的東西,但常常是先創本地端的git再創remote的,所以當我要push上去的時候就會被說沒有關聯,因為我也沒有在本地端加那些readme...想問問有沒有辦法在不創建檔案下還可以正常push上去
README.md
.gitignore
已邀請的邦友 {{ invite_list.length }}/5
就我的理解...
先加 remote repogit remote add origin https://git...
git remote add origin https://git...
如果分之名稱不一樣可能要改一下git branch -m main
git branch -m main
然後看你要怎麼處理 commit
push --force
pull --force
fetch
reset --hard
pull --rebase
好的,謝謝。
IT邦幫忙