What is the best way to integrate TFS version control

后端 未结 6 1852
终归单人心
终归单人心 2021-02-07 04:56

Working on implementing TFS throughout our organization. It is easy to integrate with .NET projects and any platform that uses Eclipse or a derivative of Eclipse f

6条回答
  •  死守一世寂寞
    2021-02-07 05:46

    Follow this links, its raeally helpful:

    https://www.visualstudio.com/get-started/cross-platform/share-your-xcode-projects-vs

    After that Check-in your existing xCode project code into TFS

    On your Mac, download and extract www.microsoft.com/en-us/download/details.aspx?id=30474. I placed it in /users/{myuseraccount}/git-tf

    Open Terminal and run the following commands

    export JAVA_HOME=/Library/Java/Home
    export PATH=$PATH:$JAVA_HOME/bin:/git_t
    export PATH="/Applications/Xcode.app/Contents/Developer/usr/libexec/git-core/":$PATH
    export PATH="/Users/{myuseraccount}//Git-Tf/":$PATH
    

    change the working directory to your xCode project folder:

    e.g.: cd “/users/{myuseraccount}/documents/xCode Projects/testproject1/”

    In terminal fire commond:

    - git remote add origin url//companyName.visualstudio.com/DefaultCollection/_git/xyz
    

    and than

    git push -u origin --all
    

    It'll directly push your project into Visual studio TFS server..!!!!

提交回复
热议问题