Skip to content

emanjavacas/git-course

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 

Repository files navigation

1. Git materials


1.1. Books

1.2. Online Tutorials

  • Try Git, simple and nice intro to the basics of the git command line.
  • Learn Git Branching, similar to Try Git but with a focus on "branching" and more advanced ops.

1.3. Graphical Interfaces

1.4. Cheatsheets

2. Git Concepts


2.1. Conceptual level

2.1.1. Repository

  • All VCS-tracked files in your project plus the full history of changes (commits) and branches.
  • Any folder with a valid /.git subfolder in charge of tracking changes to not .gitignored files in the folder.
  • A repository can also be stored remotedly (handy in cases of projects with multiple collaborators).

Other repository-related concepts are:

  • Clone: Your personal, local copy of a project (including a pointer to the remote repository - origin)
  • Origin: A standard alias (a name) that references the remote repository from which yours is a clone.
  • Fork (GitHub-only): Your remote copy (stored in GitHub) of a project. A local copy of a fork will include a reference to the remote copy (origin), as well as a reference to the source project (upstream)
  • Upstream: A standard alias (a name) that references the remote repository from which yours is a fork.

This diagram, taken from StackOverflow might help you understanding the clone/fork story:

Diagram

2.1.2. Working tree (or directory)

  • Current local view of the project (folder). It can be changed by switching back to a previous state of the project (reset), a parallel state of the project (branch), or a future state (e.g. pulling from a remote repository).

2.1.3. References

  • A human-readable pointer to a particular commit. There are several types: Heads, Tags, Remotes.
  • Head
    • A pointer to the current state of the working-tree.
    • A dynamic symbolic reference (a reference of a reference, instead of a SHA-1 value) to the current branch.
  • Tags
  • A name to a particular state in the repository's history.
  • A static symbolic reference to a commit. It contains a tagger, a date, a message and a pointer.
  • There are two types, "annotated tags" and "lightweight tags":
    • Annotated
    • Lightweight
  • Remote
  • A repository copy stored in a remote server to which the local respository copy has access to (read or write, or both).
  • A reference (or a bookmark) to a commit on a remote repository. It is read-only in the sense that it doesn't get updated by local commits.

2.1.4. Commit

  • A snapshot of the entire working directory (plus metadata including references to a previous snapshot, unique identifier - hash -, author, date etc.).
  • A reference to a commit object (a log of all changes from a previous/parent commit to the current). It is referenced by a SHA-1 value and it is always associated with a branch.

2.1.5. Branch

  • Any of the parallel states in the repository (a particular commit history).
  • A dynamic symbolic reference (a reference to a reference) to a commit. It gets updated after every new commit operation.

2.2. Command level

See Cheatsheets for the moment.

3. Setup


3.1. .gitignore

A .gitignore file in the top directory of your project tells git to ignore files that match the expression in it.

  • Example file:
    *~        # ignore emacs wip files
    .*        # ignore hidden files
    /build    # ignore /build dir (and everything in it)
    

3.1.1. Excluding subfolders but including subsubfolders

  • Ignore /doc directory, but include tree rooted at /doc/img
/doc/*
!/doc/img

3.2. Config

3.2.1. Global

git config --global user.name "My Name"
git config --global user.email "my@email.com"
git config --global core.editor /usr/bin/emacs

3.2.2. Local

3.2.2.1. Editing ./git/config

TODO

3.2.2.2. Passwordless pushing and pulling

TODO

4. GitHub tips


4.1. GitHub pages

  • You can have a personal homepage served by GitHub. See instructions here:
    • Make sure that your project complies with the structure of a static homepage.
    • Set your repository name to username.github.io

4.2. Get downloadable zip or tar files for your project

4.2.1. From the command line

  • Create a tag for the commit you want a downloadable (and push it)

    git tag v0.0
    git push origin v0.0
  • Your zip file is now accessible from https://www.github.com/username/repo/archive/v0.0.zip

  • Your tarball is now accessible from https://www.github.com/username/repo/tarball/v0.0

About

Materials for a one-day git tutorial

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published