intellij IDEA git設定說明

URL Link //n.sfs.tw/13314

2019-05-23 10:54:45 By jung

最近把專案都移到IDEA上,由於不熟悉操作,在新增分支改來改去後,要用git push 時就出現了" push rejected by remote "訊息

查到一個解法

先使用終端機進到專案的目錄下,例如/user/project/example-project/

輸入下列指令

git pull origin master --allow-unrelated-histories

From https://resource.sso.edu.tw/jung/cncauth2.1
 * branch            master     -> FETCH_HEAD
   827b4cf..b43ba8b  master     -> origin/master
Already up to date.

這樣就正常了

再進到IDEA使用GIT -> Push就成功上傳了