Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 913 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 913 Bytes

Git-assignment

To learn the basic features of git, we will use the script of a magic 8 ball (8ball.py).

Assignments:

Setup:

  • Clone this repo to your computer using git clone [email protected]/guidotournois-icemobile/git-assignment.

Basics 1

  1. Change one of the magic 8 ball answers in your favo editor and save file
  2. Check the status of your local repo in the terminal
  3. Stage changes for commit
  4. Commit your changes and check the log of your local repo
  5. Push your changes to the remote on branch master

Basics 2

  1. Use pull/fetch/merge/push to get your commits to the remote on the branch master using command line only
  2. Create and checkout a new branch locally and put random files in it
  3. Add and commit the newly added files to your branch and push it upstream
  4. Merge your branch with the master branch and push master back upstream
  5. Remove your temporary branch