SORTEE-Github-Hackathon
      • 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 New
    • Engagement control
    • Make a copy
    • 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 Note Insights Versions and GitHub Sync Sharing URL Help
Menu
Options
Engagement control Make a copy 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
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # Breakout room 5: Dynamic collaboration ### **Managing collaborations** (1st part!) ### Participants - [Eric R. Scott](https://www.ericrscott.com/) - Richard J. Telford - Cole B. Brookson - Friederike (freddy) Hillemann - Kaitlyn Gaynor - Vivienne Foroughirad - Brandon P.M. Edwards - Sarah Goslee #### *Within* each breakout room, we'll cover the following topics: Step 1: Presentation of the breakout room topic Step 2: Exposition of examples OR individual/collective practices (?) Step 3: Discussion and summary of challenges Step 4: Return of participants and organizers to the main workshop room #### *Within* each breakout room, consider the following discussion questions: 1) What other tools have you used for this purpose? 2) How does GitHub compare to other tools you've used for this purpose? 3) What are the main challenges in using GitHub for this purpose? 4) What are the main benefits of using GitHub over some other tool? 5) What could be done to improve GitHub for this purpose? ### Notes #### Organizations *Question: When to use organisations versus just using multiple repositories?* Organisations are useful especially to manage access easily for a team, also to apply a common template or base (for example) to multiple projects Example Organizations: 1. Academic labs - https://github.com/BrunaLab - https://github.com/BahlaiLab - https://github.com/PoisotLab - https://github.com/zipkinlab - https://github.com/weecology 2. Collaborative Projects - https://github.com/idiv-biodiversity - https://github.com/na-pops *Question: How to deal with datasets that cannot be shared with everybody on a team?* - can use private repositories, access codes - googledrive, googlesheets4 packages to access data stored on Google Drive - add data folder to .gitignore so it's not shared, and can instead share dummy data to run scripts - OSF for data (public/private repos) - public/private data/code interfaces on the CyVerse platform *Question: How to include repositories in your "portfolio" on GitHub if they are part of an organization rather than under your account?* - You can pin repositories from other organisations onto your personal GitHub to showcase your work. - You can fork a repository from an organization into your GitHub - You can [edit your profile README.md](https://docs.github.com/en/github/setting-up-and-managing-your-github-profile/customizing-your-profile/managing-your-profile-readme) file to include links to repositories you've worked on. #### Issues and pull-requests - Can make check-lists within issues - Assign issues to collaborators, give to-do lists in transparent way - Issues are useful for including collaborators who don't necessarily want to use git and make pull requests Are PRs useful or not so useful? Too niche for programmers, or more of a generally useful thing? - There is not a lot of scaffolding/framework about how and when to use pull requests, issues, or just commit changes directly in ecoevo research (and when to use branches or not) - It would be good to have recommendations for common situations (flowchart?) - e.g. grad student asking for feedback from a PI - "GitHub Issues is great way to deal with code feedback for students because it’s easy to link resources, have a back-and-forth to make sure there is clarity and understanding, etc. And not just make the changes myself but empower the student to do it!" - Kaitlyn - It would be important to have a template for repository structure and feedback that lab members use for collaboration (Cole) - You can make a repository a ["template"](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/creating-a-template-repository) on GitHub - Maybe instructions on "how to get code feedback" are lab-specific. We could offer some options (examples of how to use issues, branches, discussion, pull-requests) and suggest that labs decide on ways to do this and put it in an on-boarding rep in organization. #### GitHub Actions Traditional use is for continuous integration---check if changes to code affect things when merged with main branch. **Events** can trigger actions, like whenever there is a push to a branch or on a pull request. **Actions** can do a variety of things. For example, they can run code on a virtual machine of any operating system. [Where to find GitHub Actions to use](https://github.com/marketplace?type=actions) (searchable by use) ##### Questions Can GitHub actions trigger pull requests in other repos? Like if you update data in your data repo, can it make a PR to other repos that use the data in an analysis pipeline? (Eric) *Hi! Yes! There are actions in the Github Action marketplace that can create pull requests: e.g. https://github.com/marketplace/actions/github-pull-request-action. To trigger changes in other repositories, we need to use "[repository dispatches](https://docs.github.com/en/actions/reference/events-that-trigger-workflows#repository_dispatch)". This means that an event happening on repository #1 sends a parameter to other repository. The other repository then can have actions that are triggered whenever it receives this parameter from repository #1. Check this [example]((https://github.com/QCBSRworkshops/templateWorkshops/blob/main/.github/workflows/deploy_presentation-template.yml)). You can see that at the end of the document, if everything goes well, it sends a PING to all other workshop repositories. If you look [here](https://github.com/QCBSRworkshops/workshop01/blob/main/.github/workflows/in-dispatch-out.yml), you can see that that PING triggers workflows in this repository.*

    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