github 不能推的其中一種狀況 甚至雲端是空的
1234567To https://github.com/name/resp.git ! [rejected] main -> main (non-fast-forward)error: failed to push some refs to 'https://github.com/name/resp.git'hint: Updates were rejected because the tip of your current branch is behindhint: its remote counterpart. Integrate the remote changes (e.g.hint: 'git pull ...') before pushing again.hint: See the 'Note about fast-forwards' in 'git push --help' for details.
若是有東西 可以先pull下來,因為可能本機是舊檔
1git pull ...
改變git推送人與信箱
當你需要更改 Git 中的使用者名稱和電子郵件地址時,可以按照以下步驟執行:
使用以下命令檢視當前的 Git 設定:
12git config --list
這將顯示當前的 Git 設定列表。
使用以下命令設定新的使用者名稱:12git config --global user.name "Name"
將 “Name” 替換為你要設定的新使用者名稱。
使用以下命令設定新的電子郵件地址:
123git config --global user.email "email@example.com"