I read the "How to Create a CocoaPod in Swift" and I got stuck when I tried to push to git:
cd ~/Documents/Libraries/RWPickFlavor
git init
git add .
git commit -m "Initial commit"
git tag 0.1.0
git remote add origin [Your RWPickFlavor Git URL]
git push -u origin master --tags
when I execute the last instruction,the terminal outputs that I don't handle protocol '[https'
Note: My git version is 2.3.2,and Pod version is 0.38.0
[Your RWPickFlavor Git URL]in tutorial is a placeholder, and you should use your real git repo address in its place.