- 경사스러운 일입니다. 이제 이 곳에 달리는 댓글을 막을 수 있어 그리 하게 되었습니다. 그래도 이전에 달렸던 댓글들은 아무래도 볼 수 있는 다른 방법이 인터넷 상에 존재하긴 하는 모양입니다.
…
(U+2026),⋯
(U+22EF),⋮
(U+22EE)는 모두.
(U+002E)가 3번 연속으로 나열된 것과 같은 것으로 봅니다.- "한글 음절 문자"는 가(U+AC00) 이상 힣(U+D7A3) 이하의 유니코드 문자들을 의미합니다.
What else can you do? | |
How to clone repository to a specific commit? (full clone) | |
# Create empty repository to store your content | |
git clone <url> | |
git reset <sha-1> --hard | |
More info: | |
How to clone single branch? |
// 언어 명세: https://gist.github.com/xnuk/d9f883ede568d97caa158255e4b4d069 | |
// 아... 자괴감 온다.... | |
//// 코드: | |
형. 흑.......... 항..........♥ 흣.......... 흑... 항. 혀엉.. 혀어어엉.. 하앗. | |
혀어어어어어엉...... 항. 혀어어엉... 혀엉.......... 하앙. 흣... 항. 혀어어엉.. 혀엉..... | |
혀어어어어어엉.. 하아앙. 혀어어엉.......... 혀어엉....... 하앙. 혀엉................ 항. | |
흑... 흣... 하아앙... 흑.......... 하앗. 혀엉..... 항. 흑.......... 흣.......... | |
하아앙.......... 흐으윽... 흣... 형. 하아아아아앙... 흑..........♥ 히잇? 혀엉. 형..... 하앗. | |
흑... 하앙... 흐윽... 흣... 형. 하아아아앙... 흑.......... 하앙.......... 흑..........♥ |
가 | |
가까스로 | |
가령 | |
각 | |
각각 | |
각자 | |
각종 | |
갖고말하자면 | |
같다 | |
같이 |
…
(U+2026), ⋯
(U+22EF), ⋮
(U+22EE)는 모두 .
(U+002E)가 3번 연속으로 나열된 것과 같은 것으로 봅니다.Any GitHub wiki can be cloned by appending wiki.git
to the repo url, so the clone url for
the repo https://myorg/myrepo/
is: [email protected]:myorg/myrepo.wiki.git
(for ssh) or https://github.com/my/myrepo.wiki.git
(for https).
You make edits, and commit and push your changes, like any normal repo. This wiki repo
is distinct from any clone of the project repo (the repo without wiki.get
appended).
from BeautifulSoup import BeautifulSoup | |
from functools import partial | |
from urllib import urlretrieve | |
from urlparse import urljoin, urlparse | |
import argparse | |
import multiprocessing | |
import os | |
import sys | |
import urllib2 |
-- Remove the history from | |
rm -rf .git | |
-- recreate the repos from the current content only | |
git init | |
git add . | |
git commit -m "Initial commit" | |
-- push to the github remote repos ensuring you overwrite history | |
git remote add origin [email protected]:<YOUR ACCOUNT>/<YOUR REPOS>.git |