All Projects → eficode-academy → Git Katas

eficode-academy / Git Katas

Licence: mit
A set of exercises for deliberate Git Practice

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Git Katas

Telegram
✈️ Telegram Notifications Channel for Laravel
Stars: ✭ 450 (-0.66%)
Mutual labels:  hacktoberfest
Openshift Docs
OpenShift 3 and 4 product and community documentation
Stars: ✭ 452 (-0.22%)
Mutual labels:  hacktoberfest
Ruby
All algorithms implemented in Ruby
Stars: ✭ 454 (+0.22%)
Mutual labels:  hacktoberfest
Kubectl Neat
Clean up Kuberntes yaml and json output to make it readable
Stars: ✭ 451 (-0.44%)
Mutual labels:  hacktoberfest
React Masonry Css
React Masonry layout component powered by CSS, dependancy free
Stars: ✭ 451 (-0.44%)
Mutual labels:  hacktoberfest
Yarn
Libre Minecraft mappings, free to use for everyone. No exceptions.
Stars: ✭ 453 (+0%)
Mutual labels:  hacktoberfest
Dynamoid
Ruby ORM for Amazon's DynamoDB.
Stars: ✭ 449 (-0.88%)
Mutual labels:  hacktoberfest
Downloader For Apple Developers
Download Xcode, WWDC Videos, and other developer tools up to 16 times faster.
Stars: ✭ 456 (+0.66%)
Mutual labels:  hacktoberfest
Gitlab Ci Pipeline Php
☕️ Docker images for test PHP applications with Gitlab CI (or any other CI platform!)
Stars: ✭ 451 (-0.44%)
Mutual labels:  hacktoberfest
The Plain
A minimalist Jekyll theme, ideally designed for your personal blog use.
Stars: ✭ 453 (+0%)
Mutual labels:  hacktoberfest
Justtryharder
JustTryHarder, a cheat sheet which will aid you through the PWK course & the OSCP Exam. (Inspired by PayloadAllTheThings)
Stars: ✭ 450 (-0.66%)
Mutual labels:  hacktoberfest
Zek
Generate a Go struct from XML.
Stars: ✭ 451 (-0.44%)
Mutual labels:  hacktoberfest
Trow
Container Registry and Image Management for Kubernetes Clusters
Stars: ✭ 453 (+0%)
Mutual labels:  hacktoberfest
Libmesh
libMesh github repository
Stars: ✭ 450 (-0.66%)
Mutual labels:  hacktoberfest
Ava Docs
Localized docs for AVA
Stars: ✭ 455 (+0.44%)
Mutual labels:  hacktoberfest
Superjson
Safely serialize JavaScript expressions to a superset of JSON, which includes Dates, BigInts, and more.
Stars: ✭ 446 (-1.55%)
Mutual labels:  hacktoberfest
Retry Go
Simple golang library for retry mechanism
Stars: ✭ 452 (-0.22%)
Mutual labels:  hacktoberfest
Cluster Monitoring
Cluster monitoring stack for clusters based on Prometheus Operator
Stars: ✭ 453 (+0%)
Mutual labels:  hacktoberfest
Num2words
Modules to convert numbers to words. 42 --> forty-two
Stars: ✭ 454 (+0.22%)
Mutual labels:  hacktoberfest
Patternfly React
A set of React components for the PatternFly project.
Stars: ✭ 454 (+0.22%)
Mutual labels:  hacktoberfest

maintainer: randomsort

Git Katas

Quick Start

In the Cloud

Open in Cloud Shell

On Your Local Machine

Quick Start

  • Clone this repository
  • Go into the folder you want to solve an exercise in
  • Run the setup.sh script
  • Consult the README.md in that folder to get a description of the exercise

Purpose of Git Katas

This repository is a collection of Git exercises. The concept is stolen without shame from Schauderhaft.de. Unfortunately, they have not maintained the system - and we need more good Git exercises.

The exercises are designed for use when we are teaching Git courses. You should be able to use them as self-contained exercises that will allow you to keep your Git skills sharp.

Exercises starting with basic are entry-level - other exercises vary greatly in difficulty.

To get an overview of the exercises in here look in Overview.md.

Feel free to use these exercises, that's why they're public!

Suggested Learning Path

If you are coming to this repository for some basic Git knowledge, we recommend going through the exercises in the following order. This is the order that Jan Krag at Praqma teaches Git and might change over time. There are more exercises than this, but these should take you through everything you need to be able to use Git effectively in your day to day life.

See Overview.md for a more complete list and suggested order.

Contributing

If you miss exercises or find errors in any of them, feel free to improve them and make a pull request.

You can also make an issue so we notice an opportunity to improve!

Thank you!

Cheatsheet

A collection of useful commands to use throughout the exercises:

# Initializing an empty git repository.
git init            # Initialize an empty git repository under current directory.

# Cloning a repository
git clone https://github.com/praqma-training/git-katas.git      # Clone this repository to your current working directory

# Git (user and repo level) configurations
git config --local user.name "Repo-level Username"          # For setting a local git repo level user name.
git config --local user.email "[email protected]" # For setting a local git repo level user email.
                                                            # --global -> User level git config stored in <user-home>/.gitconfig for e.g. ~/.gitconfig
                                                            # --local -> repo level config stored in repo's main dir under .git/config


# See local changes
git status                  # Show the working tree status
git diff                    # Show changes current working directory (not yet staged)
git diff --cached           # Show changes currently staged for commit

# Add files to staging (before a commit)
git add myfile.txt          # Add myfile.txt to stage
git add .                   # Add entire working directory to stage

# Make a commit
git commit                              # Make a new commit with the changes in your staging area. This will open an editor for a commit message.
git commit -m "I love documentation"    # Make a new commit with a commit message from the command line
git commit -a                           # Make a new commit and automatically "add" changes from all known files
git commit -am "I still do!"            # A combination of the above
git commit --amend                      # Re-do the commit message of the previous commit (don't do this after pushing!)
                                        #   We _never_ change "public history"
git reset <file>                        # Unstage a staged file leaving in working directory without losing any changes.
git reset --soft [commit_hash]          # resets the current branch to <commit>. Does not touch the staging area or the working tree at all. 
                                        # --hard mode would discard all changes.

# Configuring a different editor
## Avoid Vim but stay in terminal:
- `git config --global core.editor nano`

## For Windows:
- Use Notepad:
`git config --global core.editor notepad`

- or for instance Notepad++:
`git config --global core.editor "'C:/Program Files/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin"`


# See history
git log             # Show commit logs
git log --oneline   # Formats commits to a single line (shorthand for --pretty=oneline  --abbrev-commit )
git log --graph     # Show a graph commits and branches
git log --pretty=fuller     # To see commit log details with author and committer details, if any different.
git log --follow <file>     # List the history of a file beyond renames
git log branch2..branch1    # Show commits reachable from branch1 but not from branch2

# Deferring
git stash                               # Stash (store temporarily) changes in working branch and enable checkingout a new branch
git stash list                          # List stored stashes.
git stash apply <stash>                 # Apply given <stash>, or if none given the latest from stash list.


# Working with Branches
git branch my-branch       # Create a new branch called my-branch
git checkout my-branch     # Checkout ("Switch" to work on) my-branch
git checkout -b my-branch  # Create a new branch called my-branch AND switch to it
git branch -d my-branch    # Delete branch my-branch that has been merged with master
git branch -D my-branch    # Forcefully delete a branch my-branch that hasn't been merged to master

# Merging
git merge master         # Merge the master branch into your currently checked out branch.
git rebase master        # Rebase current branch on top of master branch

# Working with Remotes
git remote              # Show your current remotes
git remote -v           # Show your current remotes and their URLs
git push                # Publish your commits to the upstream master of your currently checked out branch
git push -u origin my-branch  # Push newly created branch to remote repo setting up to track remote branch from origin. 
                              # No need to specify remote branch name, for e.g., when doing a 'git pull' on that branch.
git pull                # Pull changes from the remote to your currently checked out branch

# Re/moving files under version control
git rm <path/to/the/file>                 # remove file and stage the change to be committed.
git mv <source/file> <destination/file>   # move/rename file and stage the change to be committed.  

# Aliases - it's possible to make aliases of frequently used commands
#   This is often done to make a command shorter, or to add default flags

# Adding a shorthand "co" for "checkout"
git config --global alias.co "checkout"
# Usage:
git co      # Does a "git checkout"

## Logging
git log --graph --oneline --all # Show a nice graph of the previous commits
## Adding an alias called "lol" (log oneline..) that shows the above
git config --global alias.lol "log --graph --oneline --all"
## Using the alias
git lol     # Does a "git log --graph --oneline --all"

Testing

There is a very small test that you can run in powershell or bash. It is contained in the scripts test.sh and test.ps1.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].