Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 1.04 KB

git-steps.md

File metadata and controls

47 lines (29 loc) · 1.04 KB

Sample Project 3

This is our sample project 3.

We decided to use these guidelines;

  • Use One GitHub Repo
  • Use Feature Branches (new feature branch for each new step)
  • Pull Before Merging
  • Deploy From Master Branch

Gokemon's steps

  • git clone URL

  • git checkout -b feature1

    which moved me onto featured branch, is this also consided the "working tree"

    Created a file, and edited it

  • git add -A

  • git commit -m "comment"

  • git status

  • git checkout master

    moved me back onto master,

    getting ready to push to GitHub

  • git pull

  • git merge feature1

    merging my featured branch back into master

  • git status

  • git push

    required my userID and password

Repeat as needed

Back to repo readme

we picked using feature1....feature2...x as our branching convention

Project 3 Team Project 3 Team