Commit and Push the app

I already change .py file in my local server. And the last step for implementation that change it says must be commit and push the app. How I do that?

Check

I already check the video you send.

For deploying my new script report to my local machine, I need to push the script into the github? There is no step for just deploy in my local machine?

Thanks

Hello @Ronny_Harianto,

You can used below command for github. If you have using github.

Satellite-Pro-C50-A:~/workspace$ git clone https://github.com/ [Branch Path]
git status
Satellite-Pro-C50-A:~/workspace/Test$ git add .
Satellite-Pro-C50-A:~/workspace/Test$ git commit -am “This is my custom app test file”
Satellite-Pro-C50-A:~/workspace/Test$ gitk

Satellite-Pro-C50-A:~/workspace/Test$ git push
Satellite-Pro-C50-A:~/workspace/Test$ git pull

Thanks.