Workshop scratch area for demo purposes
- author: Emmanuel Joliet
The demo will cover:
- github tool: graphs/metrics, pull request, code review
- commits and pushes
- branches and merging
Participants will need Git installed and some knowledge of git
commands in order to follow the tutorial.
Participants will be guided through the following steps:
- clone the repos locally on their end (need git software installed)
git clone https://github.com/tmtsoftware/stil-workshop.git
- default landing branch should be
master
(default per repos)git status
to check on which branch you are
- create your feature/ticket branch from
master
git checkout -b [branch name]
, required unique branch name, usually formatted asISSUE-ID-meaningful-short-description
- For demo, let's append github
USERNAME
to branch name
- For demo, let's append github
- for example, let's take a ticket from JIRA board DEMOSS1
- my branch name will be DEMOSS1-EJOLIET-bug-fix
-
edit and change one line of the file in this repos named scratch.txt
-
commit your changes in your branch: add/commit
git add scratch.txt
git commit -m"[your message]"
-
continue changing/adding/commit and check the differences:
git show
- Check your commit history:
git log
or more fancygit log --decorate --graph
- OPTIONAL: if no commit to be made, at that point, you can: pull or rebase
- after pulling, check branches pulled:
git branch --all
- if
master
got new things, you will need to rebase in order to avoid conflict at the time you pull request
-
Once done of changes, push to server (
-u
flag means that you'll start tracking the branch)
- First time push:
git push -u origin [branch name]
- Your local branch is now synced with remote
- Next pushes:
git push
- Pull Request: in github.com, button 'pull request' should appear
- Show a pull request / code review
- OPTIONAL Show a case of how to request changes (and what to do)
- if request change, need to go to the branch, and
- change file, git add / commit / (
rebase -i
to squash) / push (steps 3 to 6 above) - no rebase there because branch is already in server / no force push either
- change file, git add / commit / (
- if request change, need to go to the branch, and
- Show when approve changes and merge from github
- Branch can be deleted from github after merged
-
OPTIONAL: If merge conflict (typically, same line have changed in the meantime: github will suggest commands and guidelines to solve and merge locally
-
Once merged, typically the branch can be deleted from github from the same pull request page.