Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 1.21 KB

README.md

File metadata and controls

33 lines (28 loc) · 1.21 KB

aws-restart-python

This repository is for demo purpose on the AWS-restart course.

All commands will be using git and use the -h flag for help about any command, e.g. git push -h. As at writing the current stable release is "2.39.2". Git was initially released on 7 April 2005

  • Setup username and email address
git config --global user.name "Mona Lisa"
git config --global user.email "YOUR_EMAIL" 
  • Complete Creating a Git Repository task 9 in the python course

GitHub Flow Image

Commands

  • git status
  • git clone
  • git commit -m "message"
  • git commit -m "message " --amend //to change last commit
  • git log --oneline
  • git push
  • git help config
  • git merge "" branchname
  • git fetch && git merge
  • git pull

Resources