Skip to content

Additions for serving versioned files from rails/Automatically untrack deleted files. #60

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Don't provided final param if branch is nil
  • Loading branch information
Factoid committed Mar 12, 2013
commit 953b8b57f492c40f672d8190a65bb3d1cc656ded
2 changes: 1 addition & 1 deletion lib/git/lib.rb
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ def checkout(branch, opts = {})
else
arr_opts << '-b' << opts[:new_branch] if opts[:new_branch]
end
arr_opts << branch
arr_opts << branch if branch

command('checkout', arr_opts)
end
Expand Down