Skip to content

Instantly share code, notes, and snippets.

@mindplace
mindplace / git_and_github_instructions.md
Last active July 30, 2024 01:48
Pushing your first project to github

1. Make sure git is tracking your project locally

Do you need a refresher on git? Go through Codecademy's git course.

  1. Using your terminal/command line, get inside the folder where your project files are kept: cd /path/to/my/codebase. → You cannot do this simply by opening the folder normally, you must do this with the command line/terminal.
    → Do you need a refresher on using your command line/terminal? I've compiled my favorite resources here.

  2. Check if git is already initialized: git status

@fijimunkii
fijimunkii / redis_resque_launcher.sh
Last active December 28, 2015 03:08
sh: launch redis and resque
redis-server /usr/local/etc/redis.conf
rake resque:work QUEUE='*'