git lfs install
- clone repo
- checkout branch(es) that you want to migrate
- remove remotes
git remote remove <remote name>
git lfs migrate import --include="*.uasset","*.umap","*.lib" --everything
- --include has example file types.
- --everything will do all branches
- create new remote repo
- add remote(s) back in
git remote add origin
for new repo created above
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
theverge.com##a.p-comment-notification.has-content | |
theverge.com##section#comments | |
theverge.com##span.c-byline__item > div.c-entry-stat--words | |
arstechnica.com##div.comments-hotness | |
arstechnica.com###comments-area | |
arstechnica.com##a.comment-count.icon-comment-bubble-down | |
ghacks.net##div#comments | |
youtube.com##.style-scope.ytd-comments | |
macrumors.com##.comments | |
macrumors.com###comments |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! highlight.js v9.9.0 | BSD3 License | git.io/hljslicense */ | |
!function (e) { var t = "object" == typeof window && window || "object" == typeof self && self; "undefined" != typeof exports ? e(exports) : t && (t.hljs = e({}), "function" == typeof define && define.amd && define([], function () { return t.hljs })) }(function (e) { | |
function t(e) { return e.replace(/[&<>]/gm, function (e) { return L[e] }) } function r(e) { return e.nodeName.toLowerCase() } function a(e, t) { var r = e && e.exec(t); return r && 0 === r.index } function n(e) { return C.test(e) } function i(e) { var t, r, a, i, s = e.className + " "; if (s += e.parentNode ? e.parentNode.className : "", r = E.exec(s)) return y(r[1]) ? r[1] : "no-highlight"; for (s = s.split(/\s+/), t = 0, a = s.length; a > t; t++)if (i = s[t], n(i) || y(i)) return i } function s(e, t) { var r, a = {}; for (r in e) a[r] = e[r]; if (t) for (r in t) a[r] = t[r]; return a } function c(e) { var t = []; return function a(e, n) { for (var i = e.firstChild; i; i = i.next |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo { | |
public static void main(String[] args) { | |
System.getProperty("java.library.path"); | |
} | |
} |
NewerOlder