Advertisement
thanhnb

git sdk cocoapod

Jun 21st, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. https://www.raywenderlich.com/99386/create-cocoapod-swift
  2.  
  3. cd ~/Documents/Libraries/RWPickFlavor
  4. git init
  5. git add .
  6. git commit -m "Initial commit"
  7. git tag 0.1.0
  8. git remote add origin [Your RWPickFlavor Git URL]
  9. git push -u origin master --tags
  10.  
  11. pod repo add RWPodSpecs [Your RWPodSpecs Git URL]
  12. pod repo push RWPodSpecs RWPickFlavor.podspec
  13.  
  14.  
  15. cd ~/Documents/Libraries/RWPickFlavor
  16. git add .
  17. git commit -m "Added BetterBaseClasses dependency"
  18. git tag 0.2.0
  19. git push origin master --tags
  20. pod repo push SLG_SDK_Spec sdk.podspec --allow-warnings
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement