Skip to content

Fix use of spaces instead of tab in lib/git/base.rb #517

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

Merged
merged 1 commit into from
Mar 27, 2021
Merged
Changes from all commits
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
use spaces instead of tab
Signed-off-by: Yancy <email@yancy.lol>
  • Loading branch information
yancyribbens committed Mar 23, 2021
commit 8f5fa3cf7a58298b59ec1fb1056078cf0c32d74f
2 changes: 1 addition & 1 deletion lib/git/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def each_conflict(&block) # :yields: file, your_version, their_version
# @git.pull('upstream', 'develope') # pulls from upstream/develop
#
def pull(remote='origin', branch='master')
self.lib.pull(remote, branch)
self.lib.pull(remote, branch)
end

# returns an array of Git:Remote objects
Expand Down