Thursday, September 29, 2022

在 Xcode 使用自己架設的 GitLab

 即使查了很多網頁,還是不知道什麼原因, 在 Xcode  專案無法直接連接到自己架設的 GitLab。

偶然間發現,在 Xcode 專案中引用一個檔案件(ex: FileHasGit.cpp),有使用 GitLab 管理,而在 Xcode 裏的 Source Control 自動把和這個檔案有關的 GitLab 資訊加進 Repositories。

這引發了我的實驗精神,終於發現,在隱藏目錄 .git 裏的 config 檔存著 remote Repositories 的訊息。把這個檔案裏的 url 修改為自架 GitLab 裏的 url,例如:

[core]

bare = false

repositoryformatversion = 0

filemode = true

ignorecase = true

precomposeunicode = true

logallrefupdates = true

[remote "origin"]

url = http://192.168.0.1:10081/Proj1.git

fetch = +refs/heads/*:refs/remotes/origin/*

[branch "main"]

remote = origin

merge = refs/heads/main


即可在 Xcode 裏 push 和 pull 自架 GitLab 的專案。

No comments:

Post a Comment

[Qt] 執行檔需要哪些 Dll?

 1. 使用 Qt  的 windeployqt.exe 工具 (在 C:\Qt\Qt5.14.1\5.14.1\msvc2017\bin\)。   a. 把執行檔 myProgram.exe 放在某個資料夾。   b. 在檔案總管這個資料夾按 Shift 和滑鼠右鍵,開啟 Po...