Book Image

Mastering PyCharm

By : Nafiul Islam
Book Image

Mastering PyCharm

By: Nafiul Islam

Overview of this book

Table of Contents (18 chapters)
Mastering PyCharm
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

The Changes panel


The Changes panel gives us a bird's eye view of the status of our commits and the branches we have as well as the difference between the commits. There are so many features that we cannot go over all of them, but we will be looking at most of them.

Changes is a panel, just like Project, and we should able to access it once we've initialized version control in our project:

The Changes panel has two tabs: Log and Local. The Log tab allows us to dive into the changes that have been made, providing powerful search tools. It also gives us the ability to quickly see the changes between different versions of the commits.

But, before we dive into this awesome panel, we need a project that can showcase how powerful it can be, and this is why we are going to be cloning the Python requests, an open source library by Kenneth Reitz, which has been around for quite some time and hence, has many different commits for us to look at.

The first thing that we're going to do is clone the Python...