Xcode Source Control Git -


when create new xcode project, there checkbox, can check if want use git repository on mac. did not check box, right don't have access source control resources. how can start using git project?

i think need setup local git repository.

open terminal on mac , type following commands:

cd <directoryyourcodeisin> git init git add . git commit -m 'initial commit' 

also, restart xcode after completed.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -