Skip to content

KOSENKMITL/Starter-Repo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lab 0 – Git & GitHub Intro (Python) – KOSENKMITL LAB4

Welcome! This is your first assignment. You'll learn the basic Git workflow: clone → edit → commit → push and run tests automatically with GitHub Actions.


✅ Tasks

  1. Open this repository in Codespaces (Code → Open with Codespaces).
  2. Edit hello.py:
    • Replace NAME = "REPLACE_WITH_YOUR_NAME" with your real name in English.
    • Make sure the program prints exactly: Hello, <YourName>!
  3. Run tests locally:
    pytest -q
  4. Commit and push:
    git add .
    git commit -m "Update my name"
    git push
  5. Check the Actions tab; all tests should pass ✅.

📝 Questions (answer here in README)

  • What is the difference between git add and git commit?
  • What does git push do?
  • How do you check your current branch? (command)

Write your answers under this section by editing this file and committing again.


ℹ️ Notes

  • Do not rename files or move folders.
  • Auto-grading will fail if your NAME is unchanged or the output is wrong.
  • You can run tests locally with pytest before pushing.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages