VIB Technology
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Versions and GitHub Sync Note Insights Sharing URL Help
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       owned this note    owned this note      
    Published Linked with GitHub
    Subscribed
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Subscribe
    # Git and Github Training [![hackmd-github-sync-badge](https://hackmd.io/6jsLSmuBQXmdcdM64udlbg/badge)](https://hackmd.io/6jsLSmuBQXmdcdM64udlbg) ## Use-cases * Single-user: Recover previous state (or a paper; or script; maybe you want to work on different computer [add, commit, push, pull, checkout, revert]; talk about conflict resolution in this context) * Publish code to GitHub (possibly as a publication requirement [add, commit, push]) * Work as a group on a project (paper or script [checkout, branch]) * Contribute to an open-source project ([github PRs, Forking,]) _(Concept)_ ## Tasks ### Basic Tasks * Version control a (new) local project * Copy a remote project (manuscript, script, app, library, ...) onto your computer * Make changes to your own project script/manuscript/... * Update the remote repository with your changes * Update your project with changes from the remote repository ### Advanced Tasks * Use the commit history to understand why a change was made * Fix a mistake or undo a change * `git commit --amend [--no-edit]` * `git revert` * `git reset` * `git restore` * `git rebase -i` * `git reflog` * `rm -r my_git_repo` * Make experimental changes without affecting a known-good-state * Work collaboratively with others (or yourself) on a project __________________________ __________________________ ## New Syllabus ### Prior to course day 1. Install practicalities (check in; as students are arriving) * GitHub account * Install git * Tools to be used * Ungit * Meld 2. Git configuration (check in; as students are arriving) * name * email * ssh * Default `main` branch: `git config --global init.defaultBranch main` * Issues with branch naming `master` vs `main` (Resolved by configuration) * Name: `git config --global user.name "My Full Name"` * Email: `git config --global user.email my@email.address` * Editor (optional) `git config --global core.editor ${your_fav_editor}` ### On the day 1. Check installations and configs 1. Motivate version control * Ask, **"what is the problem here?"** ![Comics](https://material.bits.vib.be/topics/git-introduction/images/version-control-meme.png) 4. What is version control? * Analogy with "undo/redo" in word processors. * What does "undo/redo" lack that would be nice? * label changes * annotate why a change was made * ability to move back and forth between alternative versions * ... 6. Git and GitHub * Are they the same? ![](https://w3cschoool.com/public/file/Git/git-vs-github.png) 7. Introduce 4 conceptual "areas"/"locations"/"spaces" when using `git`. * Picture for visualization of concepts ! * Development area **(Work folder)** * Staging area * Local Repository * Remote Repository ![James' alternative](https://github.com/vibbits/introduction-github/raw/master/images/four_areas.svg) * **In the beginning:** ![James' alternative](https://github.com/vibbits/introduction-github/raw/master/images/in_the_beginning.svg) * **`git init`** ![git init](https://github.com/vibbits/introduction-github/raw/master/images/git_init.svg) * **`git add`** ![git add](https://github.com/vibbits/introduction-github/raw/master/images/git_add.svg) * **`git commit`** ![git commit](https://github.com/vibbits/introduction-github/raw/master/images/git_commit.svg) * **`git remote add`** ![git remote add](https://github.com/vibbits/introduction-github/raw/master/images/git_remote_add.svg) * **`git push`** ![git push](https://github.com/vibbits/introduction-github/raw/master/images/git_push.svg) * **`git pull`** ![git pull](https://github.com/vibbits/introduction-github/raw/master/images/git_pull.svg) * **`git reset`** ![git reset](https://github.com/vibbits/introduction-github/raw/master/images/git_reset.svg) = ![git checkout](https://github.com/vibbits/introduction-github/raw/master/images/git_checkout.svg) * **`git restore`** ![git restore](https://github.com/vibbits/introduction-github/raw/master/images/git_restore.svg) * Remote repository `git remote` 1. Practical * Today you will write yourself a `git` reference/tutorial/cheatsheet (up to you). * Try to keep a reference/dictionary of important terms. * Create a folder and save a new text document inside it `tutorial.md` * Working folder * Where is it? * What is it for? 1. Create a repository * `git init` * Local repository * Where it is? * `.gitignore` (Github provides some templates) 7. Routine usage _(relating to conceptual areas)_ * `git add` to add files to the staging area * Staging area (`git add`) * Where is it? * What is it for? * `git commmit` to commit added files * What is the difference Commit vs Staging * Why write a commit message? * How to write a good commit message: * Describe why the change was made. * How does it address the issue? * What effects does the change have? * Describe any limitations of the change. * Do not assume the person who later reads the message (probably you) will understand what the original problem was. * The first commit line is the most important. This is what will be displayed in summaries. * https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html * This all adds context that will be useful when you have to come back to it one day. This context is usually missing from your code and would otherwise be lost forever. 1. Remote repository (use-case: single-user on multiple computers or backup; collaboration) * There are many possible remotes * Your own computer * Your colleagues computer * GitHub et al. * Create _empty_ GitHub repository * `git remote` * `git push` (local repo to remote) 1. Collaborating * In your repo, go to Settings -> Collaborators -> Type password -> Add collaborator -> type in their username * Your partner should check their email for the invitation and accept it. * Next, you will be teaching each other a skill. Then you will document the skill you learned in your teachers respository. * Peer teaching tasks (individually to share later): * CATASTOPHE!!! Delete the **LOCAL** tutorial folder (repository). How do I recover my files? `git clone` [^mean] * Once your partner makes their changes to your repository, how do you retrieve those changes? (answer: `git pull`) * `git clone` your partner's repository. * Write tutorial notes in your teachers repository for the concept you were taught. * Check what you're commiting **BEFORE** you commit: `git status`. * `git commit` * and `git push` your change to your partners repository. * `git pull` from your own repo to get your partners changes. * Exercise: what are some risks working like this? Advantages / disadvantages? 1. How to experiment risk free? (when you're working alone) * What is the state of your repository: `git status` * Do you have uncommitted changes? * Do you have staged changes? * Do you have untracked files? * `git tag` Name a commit that is "known good" * Then you can add new commits that are experimental. * Demo in "ungit" * When you want to go back to your "known good" commit: `git log` to see history * aliases - What they are? / How they help? --> Shortcuts * Issues with paging in the terminal. How to **Q**uit * Then, `git checkout` to go back to your tagged commit * Why is it useful to have the author’s name and e-mail address in the history log? 1. How to experiment risk-free? (When you're working with others) * Make a "branch" (a parallel history) * How to create a branch locally? * This can be explained with "ungit" * A common technique in open-source * Create a local branch starting from `main` called `exp`. * Make some (experimental) changes, commit. * `git checkout main` to see that the experimental changes are no longer there. * `git checkout exp` to see that the changes are back. * `git merge` experimental changes into `main` * Exercise: make some changes in a local branch 1. Later (other stuff) * Other tools to consider: * GitKraken * Github desktop * Backtrack * discarding local changes * "Stash" local changes * `git reset` * Checkout * `git show` * `git blame` * `git diff` * `.git/` folder, what is a repository ## Useful Resources (for us) * ![xkcd commits](https://imgs.xkcd.com/comics/git_commit.png) * https://education.github.com/git-cheat-sheet-education.pdf * Conflict resolution * ![flowchart](https://www.startpage.com/av/proxy-image?piurl=https%3A%2F%2Fexternal-preview.redd.it%2FLYJtffuLq552Q_jl6H1UixIFpI9d_rhEmAuL0xPgdjE.png%3Fauto%3Dwebp%26s%3D555bf79f4800de54d017219beb7a11c66f0de7b9&sp=1659441076Tcc988ddaa866042048a6a665540a58a7314091d6cb95a303a58c30b7bebfd6f2) * ![git](https://madusudanan.com/images/xkcd-vc.jpg) > https://madusudanan.com/blog/best-practices-for-using-version-control-systems/ * https://ohshitgit.com/ * https://wizardzines.com/zines/oh-shit-git/ * https://xosh.org/explain-git-in-simple-words/ * https://dev.to/unseenwizzard/learn-git-concepts-not-commands-4gjc * https://www.slideshare.net/raquelmorenocarmena/git-challenges * ![xkcd](https://imgs.xkcd.com/comics/git.png) * ![ericaheidi on dev.to](https://thepracticaldev.s3.amazonaws.com/i/d9n3kcnc76l5viwl4z2n.jpeg) > https://eheidi.dev/blog/stage-commit-push-a-git-story-comic-a37 * [Versioning image source](https://the-turing-way.netlify.app/reproducible-research/vcs.html) ![versioning](https://the-turing-way.netlify.app/_images/project-history.jpg) * ![push] (https://www.reddit.com/r/ProgrammerHumor/comments/l15v60/git_push_meme_force/) * ![image](https://i.redd.it/0cxiwyvthgc61.png) * ## Ideas: * The whole day each student is writing a `git` tutorial for themselves, commiting all of their changes along the way. The end result is a personalised `git` reference that they can use. * Groups teach each other a concept (); alternative split everyone into pairs (one teaches the other). * I would like to look inside the `.git/` folder a little. Take away some of the magic. ## Questions 4 reflexion (to be pottentially used) - In what point of the project should I start usigin Git/Github? ## Porcelains to suggest * [GitFiend](https://gitfiend.com/) * [Ungit](https://github.com/FredrikNoren/ungit) * [Kraken](https://help.gitkraken.com/gitkraken-client/gitkraken-client-home/) ### Paid and/or proporitary * [Fork](https://git-fork.com/) --- --- ## Old syllabus 1. Motivate version control 3. What is version control 4. Install practicalities * GitHub account * Install git 1. Introduce 3 conceptual "areas"/"locations"/"spaces" when using `git`. * Development area * Staging area * Committed repository * `git/` folder`git/` folder 1. Git configuration * name * email * ssh * aliases 1. Routine usage * `git add` to add files to the staging area * `git commmit` to commit added files * `git push` to push commits to GitHub * `checkout` a previous commit 1. Create a GitHub repository * `git clone` the repository * Commit message hygiene (practical question) * What happened after committing? * What would have happened if we forgot about the message argument when committing a file (`-m`) * Push commits to GitHub * Create a new repository locally * Issues with branch naming `master` vs `main` (Resolved by configuration) * Practical: create a repo from existing files (eek) * What's the point fo the "staging area" * `git pull` 1. History and status * Writing "good" commit messages (utility) * `git status` * `git log` * > Why is it useful to have the author’s name and e-mail address in the history log? * Issues with paging in the terminal. How to **Q**uit 1. Branches and merging * What is a branch? * How to create a branch in the GitHub interface * Exercise: make some changes in a local branch * Create a pull-request on GitHub * How to create a branch locally * Delete a branch in the GitHub interface * Delete a branch locally 1. GitHub "Fork"s * What is a fork * Pull requests on forks * Practical: make a pull request from your fork to the upstream repository 1. `.gitignore` * Github provides some templates 1. Using RStudio as a git porcelain ## QUIZ for 2nd day of training 1. What is True about Git / GitHub? a. GitHub is software for versioning b. Git is a website to keep backups of git projects c. GitHub is a website for backups and collaborations d. Git and GitHub are the same 2. To start a new Git project I should: a. `git add 'project name'` b. `git init` c. `git commit -m 'project description'` d. `git remote add` 3. To save one version of the project in git I: a. `git add` then `git commit -m "msg"` then `git push` b. `git add` then `git commit -m "msg"` c. `git commit` then `git push` d. `git save --version` 4. What should I consider when writing the commit message? a. I write a reference to explain to myself what changes were made. b. I write my considerations on why and how changes were made. c. I write about possible effects and limitations of my changes. d. I write about why, how, effects and limitations of my changes. 4. What would be the best commit message: a. `.` b. `Changes` c. `Changed the file zzz.py on Tuesday` d. `Reworded unclear sentence in Introduction` 5. If I initialize a new git repository in a subdirectory of an existing repository, what should I do: a. Delete both repositories, nothing else works. b. Delete the new folder completely. c. Delete the '.git' from the new repo. d. Just commit in both and all works fine. ``` folder/ .git/ subfolder/ important_data.txt .git/ ``` 6. I want to check what I have commited and what not. I can use: a. `git status` b. `git check` c. `git commit --list` d. `git summary` 7. I believe my previous version is better, how can I check? a. `git compare` b. `git diff` c. `git show` d. `git gud` 8. I want to go back to my previous version, I need to use: a. it is not possible b. `git commit --undo` c. `git rebase` d. `git revert` 9. I have started a collaboration with a friend, how do I get a copy of the repo on my computer? a. `git push` b. `git clone` c. `git pull` d. I just need an invitation 10. To share my modifications with my friend we (Myself // My friend) both need: a. I `commit` THEN `push` // THEY `pull` b. I `commit` THEN `pull` // THEY `clone` c. I `pull` THEN `clone` // THEY `push` d. I `push` // THEY `clone` THEN `pull` 11. Why does git use the concept of a staging area? a. life is complex, so is software b. you want to be able aggregate changes in larger logical units c. I like shopping, putting items in baskets makes me happy d. I just have to do it -- [Shia LaBeolf](https://youtu.be/ZXsQAXx_ao0) ## Footnotes [^mean]: Could potentially trick students into running `rm -r ${REPO_FOLDER}`

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully