Push-Pull and All That
A Guide to GitHub & Collaborating

Zigfried Hampel-Arias

Insight

5 June, 2019

General Advice for Insight

README file must be impeccable.

Practice +++ coding / interviewing with your fellows.

Mock interviews, check-ins: it's ok to cry.

It's all going to be OK.

Overview

  • Version Control
  • Brief Terminology
  • Contributing to Personal Repos
  • Contributing to Repos in Teams

Version Control: Why?

  • Keep track of code, its changes, all in one place.
    • Multiple versions of code
    • Doc changes from you (troubleshooting) or others (PyTorch, e.g.) server
  • Ability to collaborate
    • Experiment without interferring others' work
    • Tracks who-done-it and when
    • Industry Standard: Insight (practice, demo) -> Future Positions server
  • Risky not to use, plus it's FREE!

Personal Disclaimer

Not a definitive guide to using git

  • I won't pretend to be an expert
  • Countless resources with further details

Slides provide guidelines

  • Outlines majority of expected usage/reqs
  • Provides a streamlined workflow for collaborative teams

Main goal: understand & encourage following these guidelines

Terminology Overview

Places Actions Communications
repositories fork remote
fork push issues
upstream pull pull request
local merge .
. commit .
. fetch .

Sort of loose, conceptual categories for these slides...

Repositories

  • Magical place (GitHub server) where your project lives, repo officially ends in .git
  • Well organized, documented (README, checklist)

github-server

Repo in terms of version control

Origin repo has sequentially tracked versions

  • One master, may have many branches
  • Dots represent changes to project along specified branch

origin

But how to make these changes?

Local Working Copy

personal-repo-pull

One must pull the origin to workstation for local repo clone/copy.

  • git clone https://github.com/<username>/<repo>.git

Local Work

personal-repo-pull

Can make changes locally on master branch or topically named branch:

  • git checkout -b leafy_branch

Local Work

local

As a quick aside, always good to run frequently

  • git status to get more info

Can also check what available branches are present via

  • git branch

Local Commits

personal-repo-pull

When work is done, prep via add and commit!

  • git add <modified_file_list_here>
  • git commit -m '<meaningful short message of changes>'
    This preps changes in a buffer ready for the main repo

Update the Origin

personal-repo-push

Push local work to origin

  • git push
  • git push origin X
    depending if changes to master or X

Personal Repos Wrap-Up

personal-repo

These commands are used more for personal repos, for which you are the creator.

So what if you have friends?

Repo is Somewhere Else on GitHub

collab-repo-fork

You must fork the repo! Done directly on GitHub
Makes a copy of the repo at its current state in your account

Roles Change Once Forked

collab-repo-fork


Now treat forked repo as origin, as before

Won't be working on upstream till later.

Local Work Again

collab-repo-pull

After the fork, origin is repo in your account
Repo you forked from becomes upstream, pull/push from origin as usual


What about if changes are made since to the upstream you forked from???!!!

You sync them up!

collab-repo-fetch

Create a remote to the upstream repo

  • git remote add upstream https://github.com/<someones_username>/<repo>.git

You sync them up!

collab-repo-fetch

Then sync the local one by fetching the upstream, then merging it and the local master

  • git fetch upstream
  • git checkout master
  • git merge upstream/master

Now get to work as usual...

collab-repo-push


  • Make new branches and write new code
  • Add changed files, commit and push to origin

After pushing...

So far, push only changed your forked repo, the origin.

Ask changes to be reflected in upstream via Pull Request

pull-request-button

Alerts maintainer to review requested changes. One should:

  • Check if changes solve an open issue, otherwise open a new issue. new-issue-button
  • Statement in PR box detailing changes.
    • Assign yourself
    • Request review to look for errors, conflicts, etc
    • Do Not merge, only done by the reviewer!

Collaborative Effort

collab-repo

Comparison

Collaborative Work . Personal Repo Work
collab-repo . personal-repo

Some Best Practices & Comments

General

  • Use git status often
  • Commits short: git commit -m "Adds input feature x to script y"
  • Add tech advisor as collaborator

Personal Repos

  • Can work on master, branches show mastery...

Collaborative Work

  • Extension: contribute safely to codebase, avoid conflicts
    • Addition of fork, remote/fetch prior to work
    • PR after normal steps when code is deliverable (code review...)
  • Never merge a PR to a codebase unless you are the reviewer.

Summary

  • Hopefully, the functionality of GitHub is clearer
    • Set of commands for 90% work
    • Potentially improve performance of team
    • Provide systematic review in main codebase
  • Is safest, most efficient manner to streamline contributions to repos in teams
  • Finally, example checklist you can test commands on in this very repo!

Final Comments

  • Talk to your mentors / tech-advisors
    • Check-ins, mock interviews
    • Issues, problems, doubts?
    • Ask questions
  • Real interviews
    • Be reserved, but honest
    • Sleep well the two nights before
    • Ask questions (talking time, get to know potential colleagues)
  • Make sure your README file is impeccable.
  • Make sure your README file is impeccable.

Thank you for your attention!


final

Any Further Questions?

Command Line Sequences

Personal Repos

  • Create a new repo named repo_name on your GitHub :)
  • On your work station, clone the repo
    • git clone https://github.com/<your_username>/<repo_name>.git
    • cd repo_name
  • You are now in a local copy of the origin-al repo
  • You are on the master branch until you decide to make a new branch
    • git checkout -b <new_branch>
    • git branch or git status to get more info
  • Can checkout other existing branches easily
    • git checkout <other_branch_name>
    • git checkout master of course
  • For more info
    • git branch or git status

Personal Repo - Command Line Sequence

  • git clone https://github.com/<your_username>/<repo_name>.git
  • cd repo_name
  • git checkout -b <new_feature_branch_name>
  • git add <modified_file_list_here>
  • git commit -m '<meaningful short message about the changes made>'
  • git push origin <new_feature_branch_name>
  • If pushed to master branch, no worries. Otherwise, can go to your repo on GitHub and submit a Pull Request.

Contributing to Repo - Command Line Sequence

  • Fork the Repo fork-button
  • git clone https://github.com/<your_username>/<repo_name>.git
  • cd repo_name
  • git remote add upstream https://github.com/<upstream_username>/<repo_name>.git
  • git remote -v
  • git fetch upstream
  • git checkout master
  • git merge upstream/master
  • If fixing/adding, good idea to submit a ticket. Assign yourself, add labels, etc. issue-button

Contributing to Repo - Continued

  • git checkout -b <new_feature_branch_name>
  • Do what you do best
  • git add <modified_file_list_here>
  • git commit -m '<meaningful short message about the changes made>'
  • git push origin <new_feature_branch_name>
  • Go to your repo on GitHub and submit a pull request! Can request reviewer, assign yourself, add labels, etc. pr-button
  • After PR accepted go back to git fetch upstream step and keep contributing!
In [ ]: