Use git clone https://github.com/x.git to clone the entire folder. After that cd into that folder. Then use pyenv local 3.10.6, pipenv install before doing python related things.
For maven related, use maven package in the application directory.
In the git directory, run git log to read the changelog.
Pushing Git Changes
Clone the git first (change git-server to whatever git it is): git clone file:///git-server/
First set up the identity (change to the username and hostname on the running PC): git config --global user.name "user" git config --global user.email "user@hostname.(none)"
Make whatever changes you want to change. If you change something executable, remember to chmod +x it.
Add and commit the change: git add -A git commit -m "pwn"