GitHub Integration With Pycharm IDE
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhqbIj34rERmvzSoE87Nrn5eD17CFO4g5WDgtOvKp-QpbsaHTjGhsh1M9d1bQs7ahv3ENhX60UnTmpAImuDbWbh7YNcXuloVXkQyUYM2fsLuk1U_4qf6jsTdg92lXkYQAbawUbYhzjhUf4XLNmbUEuXKXGh5Nt8izIOcTfpnVNSq9L4tvKux_9RXH41cJE/s320/Git.jpg)
The below post is the first step in learning the AWS Developers Tool. We will see how to integrate Pycharm IDE with GitHub. First, We need a GitHub Account and we need to generate a Token. I have a GitHub repo called "aws_code_deploy". Now let's set up a secure encrypted communication between the PyCharm IDE & the GitHub Repository. To ensure that your PyCharm IDE can access your GitHub Repository, you must generate a Personal Access Token from here . The scopes gist, read:org, and repo are the minimum that must be granted to the access token. Any additional scopes can be granted as per requirement. Now, We have the token generated. In PyCharm go to File Menu→ Settings → Version Control → GitHub. Now, the GitHub account is added. Now PyCharm is permitted to access your GitHub Repo, but we still need to technically enable the secure encrypted exchange via SSH. Unless this is done, it will not be possible to Clone the Repository or Pus...