I have a git repository like this
.
├── a.py
├── __init__.py
├── data
│ ├── a_data.yaml
├── configs
│ ├── a_config.txt
I have created a branch and worked on creating a package. So it looks something like this now.
.
├── LICENSE.txt
├── MANIFEST.in
├── Makefile
├── README.rst
├── VERSION.ini
├── __init__.py
├── requirements.txt
├── scripts
│ ├── a
├── setup.py
└── a_package
├── a.py
├── __init__.py
├── config
│ ├── __init__.py
│ ├── a_configs.txt
├── data
│ ├── __init__.py
│ ├── a_data.yaml
While I was packaging and working on my branch, there were changes that got pushed onto "a.py". So my question is using git how can I pull the changes from origin since the directory has changes.