• Live notes about this tutorial are available at this link

In this tutorial we will see how Git and Github works and we will do some exercises on Sorting from Rosalind.

Git and Github

What are Git and Github? Let us see this slides.

Let us do the following steps, now:

  1. Register in Github
  2. Install Git on your computer downloading it from here
  3. Set up Git in VS Code
  4. Create a new folder in your computer, wherever you prefer
  5. Open the folder in Visual Studio
  6. Create a new file called: README.md
  7. Fill the file README.md with the following content:
# Welcome
 
This is my first commit.
  1. Publish local repository to Github
    1. If you accidentally pushed Initialize, execute this step to commit the changes…
    2. …and, then, this step to publish the commit to the remote repository
  2. Edit the README.md file with:
# Welcome
 
This is my second commit.
  1. Stage and Commit code changes
  2. Sync with the remote repository by following this command

Rosalind

Register in Rosalind.

Complete the following challenges from this list in Rosalind:
INS, MAJ, MER, MS, INV, PAR, PAR3