github: 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

GET List of Repos:
curl \
  -H "Accept: application/vnd.github+json" \
  -H "Authorization: Bearer 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" \
  https://api.github.com/users/meetdoshi90/repos
  
GET A Repo:
curl \
  -H "Accept: application/vnd.github+json" \
  -H "Authorization: Bearer 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" \
  https://api.github.com/repos/meetdoshi90/Zap-iOS-Game
  
GET Repo Contents:
curl \
  -H "Accept: application/vnd.github+json" \
  -H "Authorization: Bearer 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" \
  https://api.github.com/repos/meetdoshi90/Zap-iOS-Game/contents/
  
GET A File from a repository
curl \
  -H "Accept: application/vnd.github+json" \
  -H "Authorization: Bearer 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" \
  https://api.github.com/repos/meetdoshi90/Zap-iOS-Game/contents/Podfile
  
 
