Skip to content

Instantly share code, notes, and snippets.

View jneptune's full-sized avatar

Joshua Neptune jneptune

View GitHub Profile
@jneptune
jneptune / heroku-foreman.md
Last active August 29, 2015 14:24
Heroku Foreman Issues

Issues with Foreman installed by Heroku

cannot load such file -- foreman/cli (LoadError)

Problem: Foreman has issues when its path contains spaces and the default path for Heroku is C:\Program Files(x86)\Heroku.

Fix: Reinstall Heroku and specify C:\Heroku as the path.

'foreman' is not recognized

@jneptune
jneptune / .gitconfig
Last active August 29, 2015 14:24
Git Config File
[core]
editor = vim
safecrlf = false
[user]
name = Joshua Neptune
email = [email protected]
[alias]
ec = config --global -e
co = checkout
cob = checkout -b
@jneptune
jneptune / .gitignore
Created July 8, 2015 01:41
.gitignore file
# IDE #
#######
.idea
@jneptune
jneptune / git.md
Last active December 6, 2022 20:20
GIT Commands and Actions

GIT Commands and Actions

Create Repo

New Local Repo git init [project-name]
Copy Remote Repo git clone [url] [?name]

Making Changes