September 2019
Beginner to intermediate
494 pages
13h
English
Again, we will try to perform all the tasks in the version control pipeline we have discussed in the previous section using PyCharm. Here, we will see how we can add files to Git, commit them, and finally, push them on the GitHub repository created at the beginning for this section.
To add a specific file to Git, simply select it within the Version Control panel, right-click on the file, and select Git | Add, as illustrated, where I was adding the main.py file to Git:

Alternatively, you can also go to VCS | Git | Add in the menu bar, or use the corresponding keyboard shortcut. After the ...