|

Git ผูกได้ก็แก้ได้ unset-upstream

ไปทำอีท่าไหนไม่รู้ ตอนpush code ขึ้น git แล้วขึ้น Error มาตามด้านล่าง current branch does not match the name of your current branch . เช็คดูดีๆ อ้าว feature branch ไปชี้ที่ master นี้..​ไม่ใช่ละ

% git push
fatal: The upstream branch of your current branch does not match
the name of your current branch.  To push to the upstream branch
on the remote, use

    git push origin HEAD:master

To push to the branch of the same name on the remote, use

    git push origin myFeatureBranch

โอเค…ปัญหานี้แก้ได้ ไม่ยาก แค่เราต้องปลด branch ที่ผูก แล้วผูกด้วย remote branch ที่ถูกต้อง

โดยเริ่มทำการปลด upstream branch ก่อนตามคำสั่งนี้ คราวนี้ local branch เราก็จะไม่ผูกกับ remote แล้ว

% git branch --unset-upstream 

ต่อไปก็ทำการผูกกับ remote

% git branch --set-upstream-to=origin/myFeatureBranch myFeatureBranch

ลอง pull & push ก็จะได้ปกติ

% git pull
Already up to date.
% git push
Everything up-to-date

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *