Git commands in simple terms
Basic Terms Repository (Repo): A folder where your project lives, with all its files and history. Commit: Save a snapshot of your project at a specific point in time. Push: …
Basic Terms Repository (Repo): A folder where your project lives, with all its files and history. Commit: Save a snapshot of your project at a specific point in time. Push: …
Running Python code on Github (https://github.com/Inderjeetdev/chatbot): 1) In project folder create a file named script.py with actual code of Python, need to be run, example as following code: print(“Hello, World!”) …