Some helpful commands for your new repository

Initialize a new Git repository

1
$ git init

After a file has been added or modified, you can stage the file

1
$ git add README.md

Commit the file to your local repository and write a message

1
$ git commit -m "initial commit (README.md)"

♥ Git ♥

Some helpful commands for your new repository

After you have made your commit, the repository is up-to-date locally. Next you need to connect your local repo to the remote.

Add the remote

1
$ git remote add origin git@github.com:username/repo-name.git

Push your snapshot to the remote

1
$ git push -u origin master

♥ Git ♥

Git can be challenging


  • What do you find confusing?

  • What did you struggle with when creating a repository?

  • What do you think would be helpful to overcome these challenges?


Git Conceptual Road Map

gource

(image source http://blog.podrezo.com/git-introduction-for-cvssvntfs-users)


Your First Repository

Your Challenge

  • Create a new repository on GitHub

  • Write a description of the repository in the README.md Markdown file

  • Create a new text or Markdown file that says “Hello world” or anything else you’d like to say

  • Add this file to your repository and push all the changes to the remote

Let’s take some time to make sure everyone can create a repository. If you have been successful, please help your classmates.

If your problem is unique, you can always submit a question on Stack Overflow


Working with Others

Once you start working with other people on the same repository, you will encounter some scenarios that we haven’t yet covered.

What happens when two people commit changes to the repository at the same time? ???

What happens when two people commit changes to the same part of the same file at the same time?!?

What if I really disagree with the changes someone made to the repository?


Let’s demonstrate what happens when we merge…

???

to revert (hard) use git reset

can checkout previous commits temporarily.


Git GUIs

Graphical user interfaces for Git

There are several GUI tools for working with Git

These tools may be very helpful for doing things that you don’t do every day (when it’s difficult to remember the command)

They also provide nice ways to visualize your repository tree and diff commits, etc.

I like SourceTree.


  • The website for our course is rendered in HTML by GitHub Pages, too. We do this by simply enabling GitHub Pages in the settings of our repository. Then we chose a theme for our pages (i.e., the Minimal theme). These themes run Jekyll and there are some nice Jekyll pages out there.

Git Collaboration

Now that we all have repositories on GitHub, let’s collaborate!

  • Get into groups of 2-3.

  • Give your collaborators access (push rights) to your repository by inviting them on the GitHub page for your repository

  • Clone your collaborator’s repository

  • Add and edit files in your collaborator’s repository

  • Commit and push those changes to the remote


Table of contents