mirror of
https://github.com/wahyd4/wahyd4.github.com.git
synced 2026-08-16 09:05:59 +10:00
872 lines
20 KiB
HTML
872 lines
20 KiB
HTML
<!DOCTYPE html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<html class="theme-next gemini use-motion" lang="zh-Hans">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
|
|
<meta name="theme-color" content="#222">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<meta http-equiv="Cache-Control" content="no-transform" />
|
|
<meta http-equiv="Cache-Control" content="no-siteapp" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<link href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
|
|
|
|
<link href="/css/main.css?v=5.1.2" rel="stylesheet" type="text/css" />
|
|
|
|
|
|
<meta name="keywords" content="java,入门,git,jgit," />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5.1.2" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<meta name="description" content="我们通常使用git都是使用的git的客户端,比如linux下的脚本。其实windows下也是间接使用linux脚本来进行操作。不过在现在有完全使用java语言实现的git:JGIT。我们可以通过jgit来完成我们所有的git操作。 下面我将简单些一个例子来说明,使用java来创建一个git仓库,并且为仓库添加一个远端仓库地址。如果通过git脚本来执行,那么语句就是: git init git">
|
|
<meta name="keywords" content="java,入门,git,jgit">
|
|
<meta property="og:type" content="article">
|
|
<meta property="og:title" content="JAVA创建git仓库">
|
|
<meta property="og:url" content="http://toozhao.com/2012/07/04/java-create-git-repository/index.html">
|
|
<meta property="og:site_name" content="大染志">
|
|
<meta property="og:description" content="我们通常使用git都是使用的git的客户端,比如linux下的脚本。其实windows下也是间接使用linux脚本来进行操作。不过在现在有完全使用java语言实现的git:JGIT。我们可以通过jgit来完成我们所有的git操作。 下面我将简单些一个例子来说明,使用java来创建一个git仓库,并且为仓库添加一个远端仓库地址。如果通过git脚本来执行,那么语句就是: git init git">
|
|
<meta property="og:locale" content="zh-Hans">
|
|
<meta property="og:image" content="http://toozhao.com/images/2012/07/logo.png">
|
|
<meta property="og:updated_time" content="2014-07-22T08:50:43.000Z">
|
|
<meta name="twitter:card" content="summary">
|
|
<meta name="twitter:title" content="JAVA创建git仓库">
|
|
<meta name="twitter:description" content="我们通常使用git都是使用的git的客户端,比如linux下的脚本。其实windows下也是间接使用linux脚本来进行操作。不过在现在有完全使用java语言实现的git:JGIT。我们可以通过jgit来完成我们所有的git操作。 下面我将简单些一个例子来说明,使用java来创建一个git仓库,并且为仓库添加一个远端仓库地址。如果通过git脚本来执行,那么语句就是: git init git">
|
|
<meta name="twitter:image" content="http://toozhao.com/images/2012/07/logo.png">
|
|
|
|
|
|
|
|
<script type="text/javascript" id="hexo.configurations">
|
|
var NexT = window.NexT || {};
|
|
var CONFIG = {
|
|
root: '/',
|
|
scheme: 'Gemini',
|
|
version: '5.1.2',
|
|
sidebar: {"position":"left","display":"post","offset":12,"offset_float":12,"b2t":false,"scrollpercent":false,"onmobile":false},
|
|
fancybox: true,
|
|
tabs: true,
|
|
motion: true,
|
|
duoshuo: {
|
|
userId: '0',
|
|
author: '博主'
|
|
},
|
|
algolia: {
|
|
applicationID: '',
|
|
apiKey: '',
|
|
indexName: '',
|
|
hits: {"per_page":10},
|
|
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
|
|
|
|
<link rel="canonical" href="http://toozhao.com/2012/07/04/java-create-git-repository/"/>
|
|
|
|
|
|
|
|
|
|
|
|
<title>JAVA创建git仓库 | 大染志</title>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
ga('create', 'UA-5243064-16', 'auto');
|
|
ga('send', 'pageview');
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="container sidebar-position-left page-post-detail ">
|
|
<div class="headband"></div>
|
|
|
|
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
|
|
<div class="header-inner"><div class="site-brand-wrapper">
|
|
<div class="site-meta ">
|
|
|
|
|
|
<div class="custom-logo-site-title">
|
|
<a href="/" class="brand" rel="start">
|
|
<span class="logo-line-before"><i></i></span>
|
|
<span class="site-title">大染志</span>
|
|
<span class="logo-line-after"><i></i></span>
|
|
</a>
|
|
</div>
|
|
|
|
<p class="site-subtitle">想要玩得很 High 的程序员</p>
|
|
|
|
</div>
|
|
|
|
<div class="site-nav-toggle">
|
|
<button>
|
|
<span class="btn-bar"></span>
|
|
<span class="btn-bar"></span>
|
|
<span class="btn-bar"></span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<nav class="site-nav">
|
|
|
|
|
|
|
|
<ul id="menu" class="menu">
|
|
|
|
|
|
<li class="menu-item menu-item-home">
|
|
<a href="/" rel="section">
|
|
|
|
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
|
|
|
|
首页
|
|
</a>
|
|
</li>
|
|
|
|
|
|
<li class="menu-item menu-item-archives">
|
|
<a href="/archives/" rel="section">
|
|
|
|
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
|
|
|
|
归档
|
|
</a>
|
|
</li>
|
|
|
|
|
|
<li class="menu-item menu-item-tags">
|
|
<a href="/tags" rel="section">
|
|
|
|
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br />
|
|
|
|
标签
|
|
</a>
|
|
</li>
|
|
|
|
|
|
<li class="menu-item menu-item-about">
|
|
<a href="/about" rel="section">
|
|
|
|
<i class="menu-item-icon fa fa-fw fa-user"></i> <br />
|
|
|
|
关于
|
|
</a>
|
|
</li>
|
|
|
|
|
|
<li class="menu-item menu-item-知识图谱">
|
|
<a href="https://wiki.toozhao.com" rel="section">
|
|
|
|
<i class="menu-item-icon fa fa-fw fa-question-circle"></i> <br />
|
|
|
|
知识图谱
|
|
</a>
|
|
</li>
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
</div>
|
|
</header>
|
|
|
|
<main id="main" class="main">
|
|
<div class="main-inner">
|
|
<div class="content-wrap">
|
|
<div id="content" class="content">
|
|
|
|
|
|
<div id="posts" class="posts-expand">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
|
|
|
|
|
|
|
|
<div class="post-block">
|
|
<link itemprop="mainEntityOfPage" href="http://toozhao.com/2012/07/04/java-create-git-repository/">
|
|
|
|
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
|
|
<meta itemprop="name" content="Junv">
|
|
<meta itemprop="description" content="">
|
|
<meta itemprop="image" content="http://blog.tuxue.xyz/libr.jpg?imageView2/1/w/200/h/200/q/90|imageslim">
|
|
</span>
|
|
|
|
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
|
|
<meta itemprop="name" content="大染志">
|
|
</span>
|
|
|
|
|
|
<header class="post-header">
|
|
|
|
|
|
|
|
<h1 class="post-title" itemprop="name headline">JAVA创建git仓库</h1>
|
|
|
|
|
|
<div class="post-meta">
|
|
<span class="post-time">
|
|
|
|
<span class="post-meta-item-icon">
|
|
<i class="fa fa-calendar-o"></i>
|
|
</span>
|
|
|
|
<span class="post-meta-item-text">发表于</span>
|
|
|
|
<time title="创建于" itemprop="dateCreated datePublished" datetime="2012-07-04T00:00:00+10:00">
|
|
2012-07-04
|
|
</time>
|
|
|
|
|
|
|
|
<span class="post-meta-divider">|</span>
|
|
|
|
|
|
|
|
<span class="post-meta-item-icon">
|
|
<i class="fa fa-calendar-check-o"></i>
|
|
</span>
|
|
|
|
<span class="post-meta-item-text">更新于:</span>
|
|
|
|
<time title="更新于" itemprop="dateModified" datetime="2014-07-22T18:50:43+10:00">
|
|
2014-07-22
|
|
</time>
|
|
|
|
</span>
|
|
|
|
|
|
<span class="post-category" >
|
|
|
|
<span class="post-meta-divider">|</span>
|
|
|
|
<span class="post-meta-item-icon">
|
|
<i class="fa fa-folder-o"></i>
|
|
</span>
|
|
|
|
<span class="post-meta-item-text">分类于</span>
|
|
|
|
|
|
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
|
|
<a href="/categories/java/" itemprop="url" rel="index">
|
|
<span itemprop="name">java</span>
|
|
</a>
|
|
</span>
|
|
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
</header>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="post-body" itemprop="articleBody">
|
|
|
|
|
|
|
|
|
|
|
|
<p><a href="/images/2012/07/logo.png"><img class="size-full wp-image-2051 aligncenter" title="logo" src="/images/2012/07/logo.png" alt="" width="110" height="46"></a></p>
|
|
<p>我们通常使用git都是使用的git的客户端,比如linux下的脚本。其实windows下也是间接使用linux脚本来进行操作。不过在现在有完全使用java语言实现的git:<a title="jgit" href="http://www.eclipse.org/jgit/" target="_blank">JGIT</a>。我们可以通过jgit来完成我们所有的git操作。</p>
|
|
<p>下面我将简单些一个例子来说明,使用java来创建一个git仓库,并且为仓库添加一个远端仓库地址。如果通过git脚本来执行,那么语句就是:</p>
|
|
<pre class="brush: xml; title: ; notranslate" title="">git init
|
|
|
|
git remote add git://XXXXXX
|
|
|
|
</pre>
|
|
|
|
<p>首先我们需要下载<a href="http://download.eclipse.org/jgit/maven/org/eclipse/jgit/org.eclipse.jgit/2.0.0.201206130900-r/org.eclipse.jgit-2.0.0.201206130900-r.jar" target="_blank" rel="external">org.eclipse.jgit.jar</a> 包,并将其加入eclipse 的classpath中(当然这里使用eclipse来完成操作)。示例代码为:</p>
|
|
<pre class="brush: java; title: ; notranslate" title="">package com.toozhao.git;
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
import java.net.URISyntaxException;
|
|
|
|
import org.eclipse.jgit.api.Git;
|
|
import org.eclipse.jgit.api.InitCommand;
|
|
import org.eclipse.jgit.api.errors.GitAPIException;
|
|
import org.eclipse.jgit.lib.Repository;
|
|
import org.eclipse.jgit.lib.StoredConfig;
|
|
import org.eclipse.jgit.transport.RefSpec;
|
|
import org.eclipse.jgit.transport.RemoteConfig;
|
|
import org.eclipse.jgit.transport.URIish;
|
|
|
|
public class TestJGit {
|
|
public static void main(String[] args) {
|
|
Repository repo = null;
|
|
|
|
String path = "d:/testjgit"; // 设置git仓库的路径
|
|
InitCommand init = new InitCommand();
|
|
// 设置路径
|
|
init.setBare(false).setDirectory(new File(path));
|
|
// 执行git init ,创建仓库
|
|
Git git;
|
|
try {
|
|
git = init.call(); // 创建仓库
|
|
repo = git.getRepository();
|
|
System.out.println("create repo success");
|
|
} catch (GitAPIException e) {
|
|
|
|
e.printStackTrace();
|
|
}
|
|
// 执行 git remote add 命令
|
|
// 实例化一个RemoteConfig 对象,用户配置远端仓库
|
|
StoredConfig config = repo.getConfig();
|
|
try {
|
|
RemoteConfig remoteConfig = new RemoteConfig(config, "origin");
|
|
// 设置你的远端地址
|
|
URIish uri = new URIish("git://github.com/wahyd4/testjgit");
|
|
// 设置哪个分支
|
|
RefSpec refSpec = new RefSpec("+refs/head/*:refs/remotes/origin/*");
|
|
// 更新配置
|
|
remoteConfig.addFetchRefSpec(refSpec);
|
|
remoteConfig.addPushRefSpec(refSpec);
|
|
remoteConfig.addURI(uri);
|
|
remoteConfig.addPushURI(uri);
|
|
// 更新配置
|
|
remoteConfig.update(config);
|
|
// 保存到本地文件中
|
|
config.save();
|
|
System.out.println("git remote add success.");
|
|
} catch (URISyntaxException e) {
|
|
|
|
e.printStackTrace();
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</pre>
|
|
|
|
<p>执行完本代码后,打开d:/testjgit/可以看到一个.git的隐藏文件夹(如果看不到,请设置去除隐藏文件夹)。表明它已经是一个git仓库了。如果你的eclipse安装有aptana 插件,将仓库导入eclipse,eclipse还可以自动识别出git仓库。而在Egit 1.x插件中版本中都不能识别出。</p>
|
|
<p>如果你打开.git/CONFIG文件。你还可以看到:</p>
|
|
<pre class="brush: xml; title: ; notranslate" title="">[core]
|
|
repositoryformatversion = 0
|
|
filemode = false
|
|
logallrefupdates = true
|
|
[remote "origin"]
|
|
url = git://github.com/wahyd4/testjgit
|
|
pushurl = git://github.com/wahyd4/testjgit
|
|
fetch = +refs/head/*:refs/remotes/origin/*
|
|
push = +refs/head/*:refs/remotes/origin/*
|
|
|
|
</pre>
|
|
|
|
<p>这些既是我们对仓库进行的配置,全都由这个文件定义。使用aptana,你可以直接将仓库push 到你设置的远端地址。</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<footer class="post-footer">
|
|
|
|
<div class="post-tags">
|
|
|
|
<a href="/tags/java/" rel="tag"># java</a>
|
|
|
|
<a href="/tags/入门/" rel="tag"># 入门</a>
|
|
|
|
<a href="/tags/git/" rel="tag"># git</a>
|
|
|
|
<a href="/tags/jgit/" rel="tag"># jgit</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="post-nav">
|
|
<div class="post-nav-next post-nav-item">
|
|
|
|
<a href="/2012/07/03/maven-compile-nexus/" rel="next" title="使用maven编译Sonatype Nexus源码">
|
|
<i class="fa fa-chevron-left"></i> 使用maven编译Sonatype Nexus源码
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<span class="post-nav-divider"></span>
|
|
|
|
<div class="post-nav-prev post-nav-item">
|
|
|
|
<a href="/2012/07/05/access-google-reader/" rel="prev" title="解决不能访问google reader">
|
|
解决不能访问google reader <i class="fa fa-chevron-right"></i>
|
|
</a>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</footer>
|
|
</div>
|
|
|
|
|
|
|
|
</article>
|
|
|
|
|
|
|
|
<div class="post-spread">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="comments" id="comments">
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="sidebar-toggle">
|
|
<div class="sidebar-toggle-line-wrap">
|
|
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
|
|
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
|
|
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
|
|
</div>
|
|
</div>
|
|
|
|
<aside id="sidebar" class="sidebar">
|
|
|
|
<div class="sidebar-inner">
|
|
|
|
|
|
|
|
|
|
|
|
<section class="site-overview sidebar-panel sidebar-panel-active">
|
|
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
|
|
<img class="site-author-image" itemprop="image"
|
|
src="http://blog.tuxue.xyz/libr.jpg?imageView2/1/w/200/h/200/q/90|imageslim"
|
|
alt="Junv" />
|
|
<p class="site-author-name" itemprop="name">Junv</p>
|
|
|
|
<p class="site-description motion-element" itemprop="description">Go, JavaScript, Ruby on Rails, Java,Docker, CI, CD, Photography</p>
|
|
|
|
</div>
|
|
<nav class="site-state motion-element">
|
|
|
|
|
|
<div class="site-state-item site-state-posts">
|
|
|
|
<a href="/archives/">
|
|
|
|
<span class="site-state-item-count">307</span>
|
|
<span class="site-state-item-name">日志</span>
|
|
</a>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="site-state-item site-state-categories">
|
|
<a href="/categories/index.html">
|
|
<span class="site-state-item-count">69</span>
|
|
<span class="site-state-item-name">分类</span>
|
|
</a>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="site-state-item site-state-tags">
|
|
<a href="/tags/index.html">
|
|
<span class="site-state-item-count">247</span>
|
|
<span class="site-state-item-name">标签</span>
|
|
</a>
|
|
</div>
|
|
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<div class="links-of-author motion-element">
|
|
|
|
|
|
<span class="links-of-author-item">
|
|
<a href="https://github.com/wahyd4" target="_blank" title="GitHub">
|
|
|
|
<i class="fa fa-fw fa-github"></i>
|
|
|
|
|
|
GitHub
|
|
|
|
</a>
|
|
</span>
|
|
|
|
<span class="links-of-author-item">
|
|
<a href="https://www.linkedin.com/in/junwei-zhao-46944557" target="_blank" title="LinkedIn">
|
|
|
|
<i class="fa fa-fw fa-linkedin"></i>
|
|
|
|
|
|
LinkedIn
|
|
|
|
</a>
|
|
</span>
|
|
|
|
<span class="links-of-author-item">
|
|
<a href="https://stackoverflow.com/users/1140611/junv" target="_blank" title="StackOverflow">
|
|
|
|
<i class="fa fa-fw fa-stack-overflow"></i>
|
|
|
|
|
|
StackOverflow
|
|
|
|
</a>
|
|
</span>
|
|
|
|
<span class="links-of-author-item">
|
|
<a href="http://weibo.com/wahyd4" target="_blank" title="Weibo">
|
|
|
|
<i class="fa fa-fw fa-weibo"></i>
|
|
|
|
|
|
Weibo
|
|
|
|
</a>
|
|
</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
</aside>
|
|
|
|
|
|
|
|
</div>
|
|
</main>
|
|
|
|
<footer id="footer" class="footer">
|
|
<div class="footer-inner">
|
|
<div class="copyright" >
|
|
|
|
©
|
|
<span itemprop="copyrightYear">2020</span>
|
|
<span class="with-love">
|
|
<i class="fa fa-heart"></i>
|
|
</span>
|
|
<span class="author" itemprop="copyrightHolder">Junv</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
</footer>
|
|
|
|
|
|
<div class="back-to-top">
|
|
<i class="fa fa-arrow-up"></i>
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
|
|
window.Promise = null;
|
|
}
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript" src="/lib/jquery/index.js?v=2.1.3"></script>
|
|
|
|
|
|
<script type="text/javascript" src="/lib/fastclick/lib/fastclick.min.js?v=1.0.6"></script>
|
|
|
|
|
|
<script type="text/javascript" src="/lib/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script>
|
|
|
|
|
|
<script type="text/javascript" src="/lib/velocity/velocity.min.js?v=1.2.1"></script>
|
|
|
|
|
|
<script type="text/javascript" src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script>
|
|
|
|
|
|
<script type="text/javascript" src="/lib/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script>
|
|
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript" src="/js/src/utils.js?v=5.1.2"></script>
|
|
|
|
<script type="text/javascript" src="/js/src/motion.js?v=5.1.2"></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript" src="/js/src/affix.js?v=5.1.2"></script>
|
|
|
|
<script type="text/javascript" src="/js/src/schemes/pisces.js?v=5.1.2"></script>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript" src="/js/src/scrollspy.js?v=5.1.2"></script>
|
|
<script type="text/javascript" src="/js/src/post-details.js?v=5.1.2"></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.2"></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
</html>
|