Skip to content

Latest commit

 

History

History
64 lines (41 loc) · 1.46 KB

File metadata and controls

64 lines (41 loc) · 1.46 KB

USRP 2025 Introduction Jupyter-book sources

Jupyter Book Badge

USRP Science Program

Add your page

  • Fork the repository (click the fork button in the top-right corner from the main repository)

    fork

  • Clone the repository (from forked repository) and change the directory.

    $ git clone git@github.com:_your_user_name_/usrp-introduction.git
    $ cd usrp-introduction
  • Create a branch for your changes.

    $ git checkout -b _your_branch_name_
  • Navigate to the docs/students folder.

    $ cd docs/students
  • Copy the _template.md file to your_name.md.

    $ cp _template.md your_name.md
  • Edit your_name.md using your favorite editor. You can use nano, vim, emacs, or something else.

  • Commit your changes.

    $ git add your_name.md
    $ git commit -m "commit message"
  • Push the committed changes.

    If you do this for the first time in your branch, you need to do this:

    $ git push --set-upstream origin _your_branch_name_

    otherwise, you can simply do this.

    $ git push
  • Create a pull request for review and merging.