You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
I thought this code was already in master, but when I rebased my fork recently it disappeared. Was the code deleted from master? Or was this part of my fork that I never pushed?
-- A class for a commit
local Commit = {}
Commit.__index = Commit
Commit.new = function(repo, sha)
local url = ('repos/%s/%s/git/commits/%s'):format(repo.user, repo.name, sha)
local status, data = getAPI(url, repo.auth)
if not status then
error('Could not get github API from ' ..url)
end
return setmetatable({data = data}, Commit)
end
The text was updated successfully, but these errors were encountered:
I thought this code was already in
master
, but when I rebased my fork recently it disappeared. Was the code deleted frommaster
? Or was this part of my fork that I never pushed?The text was updated successfully, but these errors were encountered: