Skip to content
forked from jlord/git-it

A workshopper for learning Git and GitHub - Social coding, y'all.

License

Notifications You must be signed in to change notification settings

brntbeer/git-it

 
 

Repository files navigation

Git-it

ss

A workshopper module for learning Git and GitHub - Social coding, y'all.

These modules run a little app in your terminal and users work their way through the challenges. See nodeschool.io for more.

For developer documentation, see CONTRIBUTING.md.

Hello, future Forkers, Branchers and Pull Requesters!

This app runs in your Terminal (Mac) or Bash (Windows) and has challenges for learning Git and GitHub. It uses the real terminal (so you'll be learning the awesome command line), it uses real Git and GitHub which means when you finish all of the challenges you'll have real repositories on your GitHub account and green squares on your contribution chart.

contributions

What you'll need to run this:

A few development essentials, all are free and/or free and open source.

  • Git, this is your tracker of changes!
  • If you're on Windows, download the free GitHub for Windows, which includes Git, and use the Git Shell for your terminal.
  • If you're on a Mac you can download GitHub for Mac (from Preferences, install the command line tool), which comes with Git or you can download Git by itself.
  • Node.js, this is what this app is written in so you'll need this to run it. It's an engine for running JavaScript on servers (your computer is a server!) and will live quietly in the background. You can download it here (For most, you can just pick the Windows .msi or Mac .pkg option).
  • Text Editor, if you don't have one already, you may want one for editing code*. A few options: Atom, Sublime Text, Textmate, Brackets.

*There actually isn't code in this workshop so you're fine to use the default Notepad or TextEdit that come with Mac/PC

Install Git-it

Once you have the essentials above, install Git-it.

  • Open up a terminal window and install Git-it globally on your computer (so that you can run it from anywhere). NPM (which comes with Node.js) delivers Node.js modules (that's what this app is) to your computer from the command line, real easy like:
$ npm install -g git-it
  • If you run into trouble with this command it may be due to permissions on your computer, try adding 'sudo': sudo npm install -g git-it
  • Once it's done installing components, you can run it:
$ git-it
  • This should load the menu. You're ready to go! Select the first challenge, hit enter and you're on your way!

How it Works

  • Use the arrows ↑↓ to select the first challenge and press 'enter'.
  • Open the guide with challenge instructions by using the options listed at the bottom of the challenge.

img

  • Read the instructions in the guide and use your terminal to complete the tasks.
  • When you're done with a challenge, type 'git-it verify' in terminal.
  • If the challenge components were not completed correctly, Git-it returns some text to help you know what went wrong.
  • For some challenges you'll need to open new terminal windows and then run Git-it inside the window you've just opened. Git-it can run from any (or mutiple) terminal windows and always saves your completed status. You'll need to run it from where you're doing your Git work, so it's OK to move around like that.

If you have any questions about something, just create a new issue.

Tips

Code snippets often times look like $ some code-stuff --here. The dollar sign identifies the line as one a user would enter into the the command line, but you don't actually include it when you type it into terminal. In this case, you'd actually just type some code-stuff --here.

Variables are indicated by <VARIABLENAME> in code snippets. When you actually use the line of code, replace it, including the <>, with your variable. For instance to make a new folder in terminal the format is, mkdir <FOLDERNAME>, so if you wanted to make a folder named 'octocat', you'd type: mkdir octocat.

Command line, terminal, bash all basically mean the same thing: the MS-DOS, Doogie Howser looking screen full of words and numbers. It's awesomely powerful. You can do a lot of things from your terminal like delete, rename, copy or create files and folders; run scripts and send things back and forth between servers (like the ones storing things on GitHub.com) and your computer (also a server!).

Topics Covered in Git-it

  • Basic command line such as: cd, mkdir
  • Creating a local repository
  • Checking status, adding and committing changes
  • Creating remote repositories on GitHub.com
  • Forking repositories
  • Connecting local repositories to remote ones on GitHub.com
  • Pushing and pulling to sync changes to GitHub.com
  • Creating branches for features/changes
  • Adding and working with a collaborator (Hi, @reporobot!)
  • Creating a pull request
  • Merging and deleting branches

About

A workshopper for learning Git and GitHub - Social coding, y'all.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published