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
Post a Comment