TeamServer에서 사설 Git서버로 이관하기 - Mendix Forum

TeamServer에서 사설 Git서버로 이관하기

0

이미 TeamServer와 연결되어 있는 애플리케이션을 사설 Git으로 이관하시고자 하는 경우, 다음 메뉴얼 상의 내용을 참고하셔서 작업하시면 됩니다.

https://docs.mendix.com/refguide/on-premises-git/#47-moving-a-subversion-app-to-git

작업 방법만 동일하게 하시면 됩니다.

 

혹시 위와 같은 방법으로 설정 시 에러가 발생한다면 애플리케이션 디렉토리에서 아래와 같이 수행하여 사설 Git과 연동할 수 있습니다.

```

$ git init (will initialize the git repo)

$ git branch -M main

$ git add .

$ git commit -m “good description about your code”

$ git remote add origin "GitHub_Repo_Url"

$ git push --set-upstream-to origin main 

```

asked
0 answers