Currently, the following error appears when I try to push.
git:(swift3) git push --set-upstream origin swift3 remote: Permission to CocoaPods/Specs.git denied to paul301. fatal: unable to access 'https://github.com/CocoaPods/Specs.git/': The requested URL returned error: 403
It all started when I switched from 0.36 to version 1.0.1
I tried reinstalling CocoaPods by deleting all CocoaPods files in the project (worksapce, podfile, pod folder, podfile.lock) and doing a new βinit initβ, clearing CocoaPods caches and a number of other things.
It seems like it is trying to push my commits to a Specs reposition. I noticed that "pod install" changes my git repository to point to specs repo:

My subfile:
platform :ios, '9.0' target 'Test' do use_frameworks! pod 'Moya', '8.0.0-beta.2' pod 'iCarousel' pod 'ObjectMapper', '~> 2.0' pod 'Alamofire', '~> 4.0' pod 'FacebookCore' pod 'FacebookLogin' end
git github cocoapods
pflous
source share