/TestingGitHub

This is a test for classmates.

Primary LanguagePython

GitHub testing

The purpose of this repo is just to explain colleagues how GitHub works.

Just covering the basics:

  1. Initializing git in local directory.
  2. Getting the status of the repo.
  3. Adding files and changes to local repository.
  4. Commiting those changes to the repo.
  5. Pushing to the master branch.
  6. Checking out a different branch.

Useful commands

  • git status
  • git add <name_of_file>
  • git add . # adds all the files
  • git commit -m "My Commit Message"
  • git push origin master
  • git checkout -b "name-of-my-feature-branch"