2
0

porcelain.py 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385
  1. # porcelain.py -- Porcelain-like layer on top of Dulwich
  2. # Copyright (C) 2013 Jelmer Vernooij <jelmer@jelmer.uk>
  3. #
  4. # Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
  5. # General Public License as public by the Free Software Foundation; version 2.0
  6. # or (at your option) any later version. You can redistribute it and/or
  7. # modify it under the terms of either of these two licenses.
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. #
  15. # You should have received a copy of the licenses; if not, see
  16. # <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
  17. # and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
  18. # License, Version 2.0.
  19. #
  20. """Simple wrapper that provides porcelain-like functions on top of Dulwich.
  21. Currently implemented:
  22. * archive
  23. * add
  24. * branch{_create,_delete,_list}
  25. * check-ignore
  26. * checkout
  27. * clone
  28. * commit
  29. * commit-tree
  30. * daemon
  31. * describe
  32. * diff-tree
  33. * fetch
  34. * init
  35. * ls-files
  36. * ls-remote
  37. * ls-tree
  38. * pull
  39. * push
  40. * rm
  41. * remote{_add}
  42. * receive-pack
  43. * reset
  44. * rev-list
  45. * tag{_create,_delete,_list}
  46. * upload-pack
  47. * update-server-info
  48. * status
  49. * symbolic-ref
  50. These functions are meant to behave similarly to the git subcommands.
  51. Differences in behaviour are considered bugs.
  52. Functions should generally accept both unicode strings and bytestrings
  53. """
  54. from collections import namedtuple
  55. from contextlib import (
  56. closing,
  57. contextmanager,
  58. )
  59. from io import BytesIO, RawIOBase
  60. import datetime
  61. import os
  62. import posixpath
  63. import stat
  64. import sys
  65. import time
  66. from dulwich.archive import (
  67. tar_stream,
  68. )
  69. from dulwich.client import (
  70. get_transport_and_path,
  71. )
  72. from dulwich.config import (
  73. StackedConfig,
  74. )
  75. from dulwich.diff_tree import (
  76. CHANGE_ADD,
  77. CHANGE_DELETE,
  78. CHANGE_MODIFY,
  79. CHANGE_RENAME,
  80. CHANGE_COPY,
  81. RENAME_CHANGE_TYPES,
  82. )
  83. from dulwich.errors import (
  84. SendPackError,
  85. UpdateRefsError,
  86. )
  87. from dulwich.ignore import IgnoreFilterManager
  88. from dulwich.index import (
  89. blob_from_path_and_stat,
  90. get_unstaged_changes,
  91. )
  92. from dulwich.object_store import (
  93. tree_lookup_path,
  94. )
  95. from dulwich.objects import (
  96. Commit,
  97. Tag,
  98. format_timezone,
  99. parse_timezone,
  100. pretty_format_tree_entry,
  101. )
  102. from dulwich.objectspec import (
  103. parse_commit,
  104. parse_object,
  105. parse_ref,
  106. parse_reftuples,
  107. parse_tree,
  108. )
  109. from dulwich.pack import (
  110. write_pack_index,
  111. write_pack_objects,
  112. )
  113. from dulwich.patch import write_tree_diff
  114. from dulwich.protocol import (
  115. Protocol,
  116. ZERO_SHA,
  117. )
  118. from dulwich.refs import (
  119. ANNOTATED_TAG_SUFFIX,
  120. strip_peeled_refs,
  121. )
  122. from dulwich.repo import (BaseRepo, Repo)
  123. from dulwich.server import (
  124. FileSystemBackend,
  125. TCPGitServer,
  126. ReceivePackHandler,
  127. UploadPackHandler,
  128. update_server_info as server_update_server_info,
  129. )
  130. # Module level tuple definition for status output
  131. GitStatus = namedtuple('GitStatus', 'staged unstaged untracked')
  132. class NoneStream(RawIOBase):
  133. """Fallback if stdout or stderr are unavailable, does nothing."""
  134. def read(self, size=-1):
  135. return None
  136. def readall(self):
  137. return None
  138. def readinto(self, b):
  139. return None
  140. def write(self, b):
  141. return None
  142. default_bytes_out_stream = getattr(
  143. sys.stdout, 'buffer', sys.stdout
  144. ) or NoneStream()
  145. default_bytes_err_stream = getattr(
  146. sys.stderr, 'buffer', sys.stderr
  147. ) or NoneStream()
  148. DEFAULT_ENCODING = 'utf-8'
  149. class RemoteExists(Exception):
  150. """Raised when the remote already exists."""
  151. def open_repo(path_or_repo):
  152. """Open an argument that can be a repository or a path for a repository."""
  153. if isinstance(path_or_repo, BaseRepo):
  154. return path_or_repo
  155. return Repo(path_or_repo)
  156. @contextmanager
  157. def _noop_context_manager(obj):
  158. """Context manager that has the same api as closing but does nothing."""
  159. yield obj
  160. def open_repo_closing(path_or_repo):
  161. """Open an argument that can be a repository or a path for a repository.
  162. returns a context manager that will close the repo on exit if the argument
  163. is a path, else does nothing if the argument is a repo.
  164. """
  165. if isinstance(path_or_repo, BaseRepo):
  166. return _noop_context_manager(path_or_repo)
  167. return closing(Repo(path_or_repo))
  168. def path_to_tree_path(repopath, path):
  169. """Convert a path to a path usable in an index, e.g. bytes and relative to
  170. the repository root.
  171. :param repopath: Repository path, absolute or relative to the cwd
  172. :param path: A path, absolute or relative to the cwd
  173. :return: A path formatted for use in e.g. an index
  174. """
  175. if not isinstance(path, bytes):
  176. path = path.encode(sys.getfilesystemencoding())
  177. if not isinstance(repopath, bytes):
  178. repopath = repopath.encode(sys.getfilesystemencoding())
  179. treepath = os.path.relpath(path, repopath)
  180. if treepath.startswith(b'..'):
  181. raise ValueError('Path not in repo')
  182. return treepath
  183. def archive(repo, committish=None, outstream=default_bytes_out_stream,
  184. errstream=default_bytes_err_stream):
  185. """Create an archive.
  186. :param repo: Path of repository for which to generate an archive.
  187. :param committish: Commit SHA1 or ref to use
  188. :param outstream: Output stream (defaults to stdout)
  189. :param errstream: Error stream (defaults to stderr)
  190. """
  191. if committish is None:
  192. committish = "HEAD"
  193. with open_repo_closing(repo) as repo_obj:
  194. c = repo_obj[committish]
  195. for chunk in tar_stream(
  196. repo_obj.object_store, repo_obj.object_store[c.tree],
  197. c.commit_time):
  198. outstream.write(chunk)
  199. def update_server_info(repo="."):
  200. """Update server info files for a repository.
  201. :param repo: path to the repository
  202. """
  203. with open_repo_closing(repo) as r:
  204. server_update_server_info(r)
  205. def symbolic_ref(repo, ref_name, force=False):
  206. """Set git symbolic ref into HEAD.
  207. :param repo: path to the repository
  208. :param ref_name: short name of the new ref
  209. :param force: force settings without checking if it exists in refs/heads
  210. """
  211. with open_repo_closing(repo) as repo_obj:
  212. ref_path = _make_branch_ref(ref_name)
  213. if not force and ref_path not in repo_obj.refs.keys():
  214. raise ValueError('fatal: ref `%s` is not a ref' % ref_name)
  215. repo_obj.refs.set_symbolic_ref(b'HEAD', ref_path)
  216. def commit(repo=".", message=None, author=None, committer=None, encoding=None):
  217. """Create a new commit.
  218. :param repo: Path to repository
  219. :param message: Optional commit message
  220. :param author: Optional author name and email
  221. :param committer: Optional committer name and email
  222. :return: SHA1 of the new commit
  223. """
  224. # FIXME: Support --all argument
  225. # FIXME: Support --signoff argument
  226. if getattr(message, 'encode', None):
  227. message = message.encode(encoding or DEFAULT_ENCODING)
  228. if getattr(author, 'encode', None):
  229. author = author.encode(encoding or DEFAULT_ENCODING)
  230. if getattr(committer, 'encode', None):
  231. committer = committer.encode(encoding or DEFAULT_ENCODING)
  232. with open_repo_closing(repo) as r:
  233. return r.do_commit(
  234. message=message, author=author, committer=committer,
  235. encoding=encoding)
  236. def commit_tree(repo, tree, message=None, author=None, committer=None):
  237. """Create a new commit object.
  238. :param repo: Path to repository
  239. :param tree: An existing tree object
  240. :param author: Optional author name and email
  241. :param committer: Optional committer name and email
  242. """
  243. with open_repo_closing(repo) as r:
  244. return r.do_commit(
  245. message=message, tree=tree, committer=committer, author=author)
  246. def init(path=".", bare=False):
  247. """Create a new git repository.
  248. :param path: Path to repository.
  249. :param bare: Whether to create a bare repository.
  250. :return: A Repo instance
  251. """
  252. if not os.path.exists(path):
  253. os.mkdir(path)
  254. if bare:
  255. return Repo.init_bare(path)
  256. else:
  257. return Repo.init(path)
  258. def clone(source, target=None, bare=False, checkout=None,
  259. errstream=default_bytes_err_stream, outstream=None,
  260. origin=b"origin", **kwargs):
  261. """Clone a local or remote git repository.
  262. :param source: Path or URL for source repository
  263. :param target: Path to target repository (optional)
  264. :param bare: Whether or not to create a bare repository
  265. :param checkout: Whether or not to check-out HEAD after cloning
  266. :param errstream: Optional stream to write progress to
  267. :param outstream: Optional stream to write progress to (deprecated)
  268. :param origin: Name of remote from the repository used to clone
  269. :return: The new repository
  270. """
  271. # TODO(jelmer): This code overlaps quite a bit with Repo.clone
  272. if outstream is not None:
  273. import warnings
  274. warnings.warn(
  275. "outstream= has been deprecated in favour of errstream=.",
  276. DeprecationWarning, stacklevel=3)
  277. errstream = outstream
  278. if checkout is None:
  279. checkout = (not bare)
  280. if checkout and bare:
  281. raise ValueError("checkout and bare are incompatible")
  282. if target is None:
  283. target = source.split("/")[-1]
  284. if not os.path.exists(target):
  285. os.mkdir(target)
  286. if bare:
  287. r = Repo.init_bare(target)
  288. else:
  289. r = Repo.init(target)
  290. reflog_message = b'clone: from ' + source.encode('utf-8')
  291. try:
  292. fetch_result = fetch(
  293. r, source, origin, errstream=errstream, message=reflog_message,
  294. **kwargs)
  295. target_config = r.get_config()
  296. if not isinstance(source, bytes):
  297. source = source.encode(DEFAULT_ENCODING)
  298. target_config.set((b'remote', origin), b'url', source)
  299. target_config.set(
  300. (b'remote', origin), b'fetch',
  301. b'+refs/heads/*:refs/remotes/' + origin + b'/*')
  302. target_config.write_to_path()
  303. # TODO(jelmer): Support symref capability,
  304. # https://github.com/jelmer/dulwich/issues/485
  305. try:
  306. head = r[fetch_result[b'HEAD']]
  307. except KeyError:
  308. head = None
  309. else:
  310. r[b'HEAD'] = head.id
  311. if checkout and not bare and head is not None:
  312. errstream.write(b'Checking out ' + head.id + b'\n')
  313. r.reset_index(head.tree)
  314. except BaseException:
  315. r.close()
  316. raise
  317. return r
  318. def add(repo=".", paths=None):
  319. """Add files to the staging area.
  320. :param repo: Repository for the files
  321. :param paths: Paths to add. No value passed stages all modified files.
  322. :return: Tuple with set of added files and ignored files
  323. """
  324. ignored = set()
  325. with open_repo_closing(repo) as r:
  326. ignore_manager = IgnoreFilterManager.from_repo(r)
  327. if not paths:
  328. paths = list(
  329. get_untracked_paths(os.getcwd(), r.path, r.open_index()))
  330. relpaths = []
  331. if not isinstance(paths, list):
  332. paths = [paths]
  333. for p in paths:
  334. relpath = os.path.relpath(p, r.path)
  335. if relpath.startswith('..' + os.path.sep):
  336. raise ValueError('path %r is not in repo' % relpath)
  337. # FIXME: Support patterns, directories.
  338. if ignore_manager.is_ignored(relpath):
  339. ignored.add(relpath)
  340. continue
  341. relpaths.append(relpath)
  342. r.stage(relpaths)
  343. return (relpaths, ignored)
  344. def remove(repo=".", paths=None, cached=False):
  345. """Remove files from the staging area.
  346. :param repo: Repository for the files
  347. :param paths: Paths to remove
  348. """
  349. with open_repo_closing(repo) as r:
  350. index = r.open_index()
  351. for p in paths:
  352. full_path = os.path.abspath(p).encode(sys.getfilesystemencoding())
  353. tree_path = path_to_tree_path(r.path, p)
  354. try:
  355. index_sha = index[tree_path].sha
  356. except KeyError:
  357. raise Exception('%s did not match any files' % p)
  358. if not cached:
  359. try:
  360. st = os.lstat(full_path)
  361. except OSError:
  362. pass
  363. else:
  364. try:
  365. blob = blob_from_path_and_stat(full_path, st)
  366. except IOError:
  367. pass
  368. else:
  369. try:
  370. committed_sha = tree_lookup_path(
  371. r.__getitem__, r[r.head()].tree, tree_path)[1]
  372. except KeyError:
  373. committed_sha = None
  374. if blob.id != index_sha and index_sha != committed_sha:
  375. raise Exception(
  376. 'file has staged content differing '
  377. 'from both the file and head: %s' % p)
  378. if index_sha != committed_sha:
  379. raise Exception(
  380. 'file has staged changes: %s' % p)
  381. os.remove(full_path)
  382. del index[tree_path]
  383. index.write()
  384. rm = remove
  385. def commit_decode(commit, contents, default_encoding=DEFAULT_ENCODING):
  386. if commit.encoding is not None:
  387. return contents.decode(commit.encoding, "replace")
  388. return contents.decode(default_encoding, "replace")
  389. def print_commit(commit, decode, outstream=sys.stdout):
  390. """Write a human-readable commit log entry.
  391. :param commit: A `Commit` object
  392. :param outstream: A stream file to write to
  393. """
  394. outstream.write("-" * 50 + "\n")
  395. outstream.write("commit: " + commit.id.decode('ascii') + "\n")
  396. if len(commit.parents) > 1:
  397. outstream.write(
  398. "merge: " +
  399. "...".join([c.decode('ascii') for c in commit.parents[1:]]) + "\n")
  400. outstream.write("Author: " + decode(commit.author) + "\n")
  401. if commit.author != commit.committer:
  402. outstream.write("Committer: " + decode(commit.committer) + "\n")
  403. time_tuple = time.gmtime(commit.author_time + commit.author_timezone)
  404. time_str = time.strftime("%a %b %d %Y %H:%M:%S", time_tuple)
  405. timezone_str = format_timezone(commit.author_timezone).decode('ascii')
  406. outstream.write("Date: " + time_str + " " + timezone_str + "\n")
  407. outstream.write("\n")
  408. outstream.write(decode(commit.message) + "\n")
  409. outstream.write("\n")
  410. def print_tag(tag, decode, outstream=sys.stdout):
  411. """Write a human-readable tag.
  412. :param tag: A `Tag` object
  413. :param decode: Function for decoding bytes to unicode string
  414. :param outstream: A stream to write to
  415. """
  416. outstream.write("Tagger: " + decode(tag.tagger) + "\n")
  417. outstream.write("Date: " + decode(tag.tag_time) + "\n")
  418. outstream.write("\n")
  419. outstream.write(decode(tag.message) + "\n")
  420. outstream.write("\n")
  421. def show_blob(repo, blob, decode, outstream=sys.stdout):
  422. """Write a blob to a stream.
  423. :param repo: A `Repo` object
  424. :param blob: A `Blob` object
  425. :param decode: Function for decoding bytes to unicode string
  426. :param outstream: A stream file to write to
  427. """
  428. outstream.write(decode(blob.data))
  429. def show_commit(repo, commit, decode, outstream=sys.stdout):
  430. """Show a commit to a stream.
  431. :param repo: A `Repo` object
  432. :param commit: A `Commit` object
  433. :param decode: Function for decoding bytes to unicode string
  434. :param outstream: Stream to write to
  435. """
  436. print_commit(commit, decode=decode, outstream=outstream)
  437. if commit.parents:
  438. parent_commit = repo[commit.parents[0]]
  439. base_tree = parent_commit.tree
  440. else:
  441. base_tree = None
  442. diffstream = BytesIO()
  443. write_tree_diff(
  444. diffstream,
  445. repo.object_store, base_tree, commit.tree)
  446. diffstream.seek(0)
  447. outstream.write(
  448. diffstream.getvalue().decode(
  449. commit.encoding or DEFAULT_ENCODING, 'replace'))
  450. def show_tree(repo, tree, decode, outstream=sys.stdout):
  451. """Print a tree to a stream.
  452. :param repo: A `Repo` object
  453. :param tree: A `Tree` object
  454. :param decode: Function for decoding bytes to unicode string
  455. :param outstream: Stream to write to
  456. """
  457. for n in tree:
  458. outstream.write(decode(n) + "\n")
  459. def show_tag(repo, tag, decode, outstream=sys.stdout):
  460. """Print a tag to a stream.
  461. :param repo: A `Repo` object
  462. :param tag: A `Tag` object
  463. :param decode: Function for decoding bytes to unicode string
  464. :param outstream: Stream to write to
  465. """
  466. print_tag(tag, decode, outstream)
  467. show_object(repo, repo[tag.object[1]], outstream)
  468. def show_object(repo, obj, decode, outstream):
  469. return {
  470. b"tree": show_tree,
  471. b"blob": show_blob,
  472. b"commit": show_commit,
  473. b"tag": show_tag,
  474. }[obj.type_name](repo, obj, decode, outstream)
  475. def print_name_status(changes):
  476. """Print a simple status summary, listing changed files.
  477. """
  478. for change in changes:
  479. if not change:
  480. continue
  481. if isinstance(change, list):
  482. change = change[0]
  483. if change.type == CHANGE_ADD:
  484. path1 = change.new.path
  485. path2 = ''
  486. kind = 'A'
  487. elif change.type == CHANGE_DELETE:
  488. path1 = change.old.path
  489. path2 = ''
  490. kind = 'D'
  491. elif change.type == CHANGE_MODIFY:
  492. path1 = change.new.path
  493. path2 = ''
  494. kind = 'M'
  495. elif change.type in RENAME_CHANGE_TYPES:
  496. path1 = change.old.path
  497. path2 = change.new.path
  498. if change.type == CHANGE_RENAME:
  499. kind = 'R'
  500. elif change.type == CHANGE_COPY:
  501. kind = 'C'
  502. yield '%-8s%-20s%-20s' % (kind, path1, path2)
  503. def log(repo=".", paths=None, outstream=sys.stdout, max_entries=None,
  504. reverse=False, name_status=False):
  505. """Write commit logs.
  506. :param repo: Path to repository
  507. :param paths: Optional set of specific paths to print entries for
  508. :param outstream: Stream to write log output to
  509. :param reverse: Reverse order in which entries are printed
  510. :param name_status: Print name status
  511. :param max_entries: Optional maximum number of entries to display
  512. """
  513. with open_repo_closing(repo) as r:
  514. walker = r.get_walker(
  515. max_entries=max_entries, paths=paths, reverse=reverse)
  516. for entry in walker:
  517. def decode(x):
  518. return commit_decode(entry.commit, x)
  519. print_commit(entry.commit, decode, outstream)
  520. if name_status:
  521. outstream.writelines(
  522. [l+'\n' for l in print_name_status(entry.changes())])
  523. # TODO(jelmer): better default for encoding?
  524. def show(repo=".", objects=None, outstream=sys.stdout,
  525. default_encoding=DEFAULT_ENCODING):
  526. """Print the changes in a commit.
  527. :param repo: Path to repository
  528. :param objects: Objects to show (defaults to [HEAD])
  529. :param outstream: Stream to write to
  530. :param default_encoding: Default encoding to use if none is set in the
  531. commit
  532. """
  533. if objects is None:
  534. objects = ["HEAD"]
  535. if not isinstance(objects, list):
  536. objects = [objects]
  537. with open_repo_closing(repo) as r:
  538. for objectish in objects:
  539. o = parse_object(r, objectish)
  540. if isinstance(o, Commit):
  541. def decode(x):
  542. return commit_decode(o, x, default_encoding)
  543. else:
  544. def decode(x):
  545. return x.decode(default_encoding)
  546. show_object(r, o, decode, outstream)
  547. def diff_tree(repo, old_tree, new_tree, outstream=sys.stdout):
  548. """Compares the content and mode of blobs found via two tree objects.
  549. :param repo: Path to repository
  550. :param old_tree: Id of old tree
  551. :param new_tree: Id of new tree
  552. :param outstream: Stream to write to
  553. """
  554. with open_repo_closing(repo) as r:
  555. write_tree_diff(outstream, r.object_store, old_tree, new_tree)
  556. def rev_list(repo, commits, outstream=sys.stdout):
  557. """Lists commit objects in reverse chronological order.
  558. :param repo: Path to repository
  559. :param commits: Commits over which to iterate
  560. :param outstream: Stream to write to
  561. """
  562. with open_repo_closing(repo) as r:
  563. for entry in r.get_walker(include=[r[c].id for c in commits]):
  564. outstream.write(entry.commit.id + b"\n")
  565. def tag(*args, **kwargs):
  566. import warnings
  567. warnings.warn("tag has been deprecated in favour of tag_create.",
  568. DeprecationWarning)
  569. return tag_create(*args, **kwargs)
  570. def tag_create(
  571. repo, tag, author=None, message=None, annotated=False,
  572. objectish="HEAD", tag_time=None, tag_timezone=None):
  573. """Creates a tag in git via dulwich calls:
  574. :param repo: Path to repository
  575. :param tag: tag string
  576. :param author: tag author (optional, if annotated is set)
  577. :param message: tag message (optional)
  578. :param annotated: whether to create an annotated tag
  579. :param objectish: object the tag should point at, defaults to HEAD
  580. :param tag_time: Optional time for annotated tag
  581. :param tag_timezone: Optional timezone for annotated tag
  582. """
  583. with open_repo_closing(repo) as r:
  584. object = parse_object(r, objectish)
  585. if annotated:
  586. # Create the tag object
  587. tag_obj = Tag()
  588. if author is None:
  589. # TODO(jelmer): Don't use repo private method.
  590. author = r._get_user_identity()
  591. tag_obj.tagger = author
  592. tag_obj.message = message
  593. tag_obj.name = tag
  594. tag_obj.object = (type(object), object.id)
  595. if tag_time is None:
  596. tag_time = int(time.time())
  597. tag_obj.tag_time = tag_time
  598. if tag_timezone is None:
  599. # TODO(jelmer) Use current user timezone rather than UTC
  600. tag_timezone = 0
  601. elif isinstance(tag_timezone, str):
  602. tag_timezone = parse_timezone(tag_timezone)
  603. tag_obj.tag_timezone = tag_timezone
  604. r.object_store.add_object(tag_obj)
  605. tag_id = tag_obj.id
  606. else:
  607. tag_id = object.id
  608. r.refs[_make_tag_ref(tag)] = tag_id
  609. def list_tags(*args, **kwargs):
  610. import warnings
  611. warnings.warn("list_tags has been deprecated in favour of tag_list.",
  612. DeprecationWarning)
  613. return tag_list(*args, **kwargs)
  614. def tag_list(repo, outstream=sys.stdout):
  615. """List all tags.
  616. :param repo: Path to repository
  617. :param outstream: Stream to write tags to
  618. """
  619. with open_repo_closing(repo) as r:
  620. tags = sorted(r.refs.as_dict(b"refs/tags"))
  621. return tags
  622. def tag_delete(repo, name):
  623. """Remove a tag.
  624. :param repo: Path to repository
  625. :param name: Name of tag to remove
  626. """
  627. with open_repo_closing(repo) as r:
  628. if isinstance(name, bytes):
  629. names = [name]
  630. elif isinstance(name, list):
  631. names = name
  632. else:
  633. raise TypeError("Unexpected tag name type %r" % name)
  634. for name in names:
  635. del r.refs[_make_tag_ref(name)]
  636. def reset(repo, mode, treeish="HEAD"):
  637. """Reset current HEAD to the specified state.
  638. :param repo: Path to repository
  639. :param mode: Mode ("hard", "soft", "mixed")
  640. :param treeish: Treeish to reset to
  641. """
  642. if mode != "hard":
  643. raise ValueError("hard is the only mode currently supported")
  644. with open_repo_closing(repo) as r:
  645. tree = parse_tree(r, treeish)
  646. r.reset_index(tree.id)
  647. def push(repo, remote_location, refspecs,
  648. outstream=default_bytes_out_stream,
  649. errstream=default_bytes_err_stream, **kwargs):
  650. """Remote push with dulwich via dulwich.client
  651. :param repo: Path to repository
  652. :param remote_location: Location of the remote
  653. :param refspecs: Refs to push to remote
  654. :param outstream: A stream file to write output
  655. :param errstream: A stream file to write errors
  656. """
  657. # Open the repo
  658. with open_repo_closing(repo) as r:
  659. # Get the client and path
  660. client, path = get_transport_and_path(
  661. remote_location, config=r.get_config_stack(), **kwargs)
  662. selected_refs = []
  663. def update_refs(refs):
  664. selected_refs.extend(parse_reftuples(r.refs, refs, refspecs))
  665. new_refs = {}
  666. # TODO: Handle selected_refs == {None: None}
  667. for (lh, rh, force) in selected_refs:
  668. if lh is None:
  669. new_refs[rh] = ZERO_SHA
  670. else:
  671. new_refs[rh] = r.refs[lh]
  672. return new_refs
  673. err_encoding = getattr(errstream, 'encoding', None) or DEFAULT_ENCODING
  674. remote_location_bytes = client.get_url(path).encode(err_encoding)
  675. try:
  676. client.send_pack(
  677. path, update_refs,
  678. generate_pack_data=r.object_store.generate_pack_data,
  679. progress=errstream.write)
  680. errstream.write(
  681. b"Push to " + remote_location_bytes + b" successful.\n")
  682. except (UpdateRefsError, SendPackError) as e:
  683. errstream.write(b"Push to " + remote_location_bytes +
  684. b" failed -> " + e.message.encode(err_encoding) +
  685. b"\n")
  686. def pull(repo, remote_location=None, refspecs=None,
  687. outstream=default_bytes_out_stream,
  688. errstream=default_bytes_err_stream, **kwargs):
  689. """Pull from remote via dulwich.client
  690. :param repo: Path to repository
  691. :param remote_location: Location of the remote
  692. :param refspec: refspecs to fetch
  693. :param outstream: A stream file to write to output
  694. :param errstream: A stream file to write to errors
  695. """
  696. # Open the repo
  697. with open_repo_closing(repo) as r:
  698. if remote_location is None:
  699. # TODO(jelmer): Lookup 'remote' for current branch in config
  700. raise NotImplementedError(
  701. "looking up remote from branch config not supported yet")
  702. if refspecs is None:
  703. refspecs = [b"HEAD"]
  704. selected_refs = []
  705. def determine_wants(remote_refs):
  706. selected_refs.extend(
  707. parse_reftuples(remote_refs, r.refs, refspecs))
  708. return [remote_refs[lh] for (lh, rh, force) in selected_refs]
  709. client, path = get_transport_and_path(
  710. remote_location, config=r.get_config_stack(), **kwargs)
  711. fetch_result = client.fetch(
  712. path, r, progress=errstream.write, determine_wants=determine_wants)
  713. for (lh, rh, force) in selected_refs:
  714. r.refs[rh] = fetch_result.refs[lh]
  715. if selected_refs:
  716. r[b'HEAD'] = fetch_result.refs[selected_refs[0][1]]
  717. # Perform 'git checkout .' - syncs staged changes
  718. tree = r[b"HEAD"].tree
  719. r.reset_index(tree=tree)
  720. def status(repo=".", ignored=False):
  721. """Returns staged, unstaged, and untracked changes relative to the HEAD.
  722. :param repo: Path to repository or repository object
  723. :param ignored: Whether to include ignored files in `untracked`
  724. :return: GitStatus tuple,
  725. staged - list of staged paths (diff index/HEAD)
  726. unstaged - list of unstaged paths (diff index/working-tree)
  727. untracked - list of untracked, un-ignored & non-.git paths
  728. """
  729. with open_repo_closing(repo) as r:
  730. # 1. Get status of staged
  731. tracked_changes = get_tree_changes(r)
  732. # 2. Get status of unstaged
  733. index = r.open_index()
  734. unstaged_changes = list(get_unstaged_changes(index, r.path))
  735. ignore_manager = IgnoreFilterManager.from_repo(r)
  736. untracked_paths = get_untracked_paths(r.path, r.path, index)
  737. if ignored:
  738. untracked_changes = list(untracked_paths)
  739. else:
  740. untracked_changes = [
  741. p for p in untracked_paths
  742. if not ignore_manager.is_ignored(p)]
  743. return GitStatus(tracked_changes, unstaged_changes, untracked_changes)
  744. def get_untracked_paths(frompath, basepath, index):
  745. """Get untracked paths.
  746. ;param frompath: Path to walk
  747. :param basepath: Path to compare to
  748. :param index: Index to check against
  749. """
  750. # If nothing is specified, add all non-ignored files.
  751. for dirpath, dirnames, filenames in os.walk(frompath):
  752. # Skip .git and below.
  753. if '.git' in dirnames:
  754. dirnames.remove('.git')
  755. if dirpath != basepath:
  756. continue
  757. if '.git' in filenames:
  758. filenames.remove('.git')
  759. if dirpath != basepath:
  760. continue
  761. for filename in filenames:
  762. ap = os.path.join(dirpath, filename)
  763. ip = path_to_tree_path(basepath, ap)
  764. if ip not in index:
  765. yield os.path.relpath(ap, frompath)
  766. def get_tree_changes(repo):
  767. """Return add/delete/modify changes to tree by comparing index to HEAD.
  768. :param repo: repo path or object
  769. :return: dict with lists for each type of change
  770. """
  771. with open_repo_closing(repo) as r:
  772. index = r.open_index()
  773. # Compares the Index to the HEAD & determines changes
  774. # Iterate through the changes and report add/delete/modify
  775. # TODO: call out to dulwich.diff_tree somehow.
  776. tracked_changes = {
  777. 'add': [],
  778. 'delete': [],
  779. 'modify': [],
  780. }
  781. try:
  782. tree_id = r[b'HEAD'].tree
  783. except KeyError:
  784. tree_id = None
  785. for change in index.changes_from_tree(r.object_store, tree_id):
  786. if not change[0][0]:
  787. tracked_changes['add'].append(change[0][1])
  788. elif not change[0][1]:
  789. tracked_changes['delete'].append(change[0][0])
  790. elif change[0][0] == change[0][1]:
  791. tracked_changes['modify'].append(change[0][0])
  792. else:
  793. raise AssertionError('git mv ops not yet supported')
  794. return tracked_changes
  795. def daemon(path=".", address=None, port=None):
  796. """Run a daemon serving Git requests over TCP/IP.
  797. :param path: Path to the directory to serve.
  798. :param address: Optional address to listen on (defaults to ::)
  799. :param port: Optional port to listen on (defaults to TCP_GIT_PORT)
  800. """
  801. # TODO(jelmer): Support git-daemon-export-ok and --export-all.
  802. backend = FileSystemBackend(path)
  803. server = TCPGitServer(backend, address, port)
  804. server.serve_forever()
  805. def web_daemon(path=".", address=None, port=None):
  806. """Run a daemon serving Git requests over HTTP.
  807. :param path: Path to the directory to serve
  808. :param address: Optional address to listen on (defaults to ::)
  809. :param port: Optional port to listen on (defaults to 80)
  810. """
  811. from dulwich.web import (
  812. make_wsgi_chain,
  813. make_server,
  814. WSGIRequestHandlerLogger,
  815. WSGIServerLogger)
  816. backend = FileSystemBackend(path)
  817. app = make_wsgi_chain(backend)
  818. server = make_server(address, port, app,
  819. handler_class=WSGIRequestHandlerLogger,
  820. server_class=WSGIServerLogger)
  821. server.serve_forever()
  822. def upload_pack(path=".", inf=None, outf=None):
  823. """Upload a pack file after negotiating its contents using smart protocol.
  824. :param path: Path to the repository
  825. :param inf: Input stream to communicate with client
  826. :param outf: Output stream to communicate with client
  827. """
  828. if outf is None:
  829. outf = getattr(sys.stdout, 'buffer', sys.stdout)
  830. if inf is None:
  831. inf = getattr(sys.stdin, 'buffer', sys.stdin)
  832. path = os.path.expanduser(path)
  833. backend = FileSystemBackend(path)
  834. def send_fn(data):
  835. outf.write(data)
  836. outf.flush()
  837. proto = Protocol(inf.read, send_fn)
  838. handler = UploadPackHandler(backend, [path], proto)
  839. # FIXME: Catch exceptions and write a single-line summary to outf.
  840. handler.handle()
  841. return 0
  842. def receive_pack(path=".", inf=None, outf=None):
  843. """Receive a pack file after negotiating its contents using smart protocol.
  844. :param path: Path to the repository
  845. :param inf: Input stream to communicate with client
  846. :param outf: Output stream to communicate with client
  847. """
  848. if outf is None:
  849. outf = getattr(sys.stdout, 'buffer', sys.stdout)
  850. if inf is None:
  851. inf = getattr(sys.stdin, 'buffer', sys.stdin)
  852. path = os.path.expanduser(path)
  853. backend = FileSystemBackend(path)
  854. def send_fn(data):
  855. outf.write(data)
  856. outf.flush()
  857. proto = Protocol(inf.read, send_fn)
  858. handler = ReceivePackHandler(backend, [path], proto)
  859. # FIXME: Catch exceptions and write a single-line summary to outf.
  860. handler.handle()
  861. return 0
  862. def _make_branch_ref(name):
  863. if getattr(name, 'encode', None):
  864. name = name.encode(DEFAULT_ENCODING)
  865. return b"refs/heads/" + name
  866. def _make_tag_ref(name):
  867. if getattr(name, 'encode', None):
  868. name = name.encode(DEFAULT_ENCODING)
  869. return b"refs/tags/" + name
  870. def branch_delete(repo, name):
  871. """Delete a branch.
  872. :param repo: Path to the repository
  873. :param name: Name of the branch
  874. """
  875. with open_repo_closing(repo) as r:
  876. if isinstance(name, list):
  877. names = name
  878. else:
  879. names = [name]
  880. for name in names:
  881. del r.refs[_make_branch_ref(name)]
  882. def branch_create(repo, name, objectish=None, force=False):
  883. """Create a branch.
  884. :param repo: Path to the repository
  885. :param name: Name of the new branch
  886. :param objectish: Target object to point new branch at (defaults to HEAD)
  887. :param force: Force creation of branch, even if it already exists
  888. """
  889. with open_repo_closing(repo) as r:
  890. if objectish is None:
  891. objectish = "HEAD"
  892. object = parse_object(r, objectish)
  893. refname = _make_branch_ref(name)
  894. ref_message = b"branch: Created from " + objectish.encode('utf-8')
  895. if force:
  896. r.refs.set_if_equals(refname, None, object.id, message=ref_message)
  897. else:
  898. if not r.refs.add_if_new(refname, object.id, message=ref_message):
  899. raise KeyError("Branch with name %s already exists." % name)
  900. def branch_list(repo):
  901. """List all branches.
  902. :param repo: Path to the repository
  903. """
  904. with open_repo_closing(repo) as r:
  905. return r.refs.keys(base=b"refs/heads/")
  906. def fetch(repo, remote_location, remote_name=b'origin', outstream=sys.stdout,
  907. errstream=default_bytes_err_stream, message=None, **kwargs):
  908. """Fetch objects from a remote server.
  909. :param repo: Path to the repository
  910. :param remote_location: String identifying a remote server
  911. :param remote_name: Name for remote server
  912. :param outstream: Output stream (defaults to stdout)
  913. :param errstream: Error stream (defaults to stderr)
  914. :param message: Reflog message (defaults to b"fetch: from <remote_name>")
  915. :return: Dictionary with refs on the remote
  916. """
  917. if message is None:
  918. message = b'fetch: from ' + remote_location.encode("utf-8")
  919. with open_repo_closing(repo) as r:
  920. client, path = get_transport_and_path(
  921. remote_location, config=r.get_config_stack(), **kwargs)
  922. fetch_result = client.fetch(path, r, progress=errstream.write)
  923. stripped_refs = strip_peeled_refs(fetch_result.refs)
  924. branches = {
  925. n[len(b'refs/heads/'):]: v for (n, v) in stripped_refs.items()
  926. if n.startswith(b'refs/heads/')}
  927. r.refs.import_refs(
  928. b'refs/remotes/' + remote_name, branches, message=message)
  929. tags = {
  930. n[len(b'refs/tags/'):]: v for (n, v) in stripped_refs.items()
  931. if n.startswith(b'refs/tags/') and
  932. not n.endswith(ANNOTATED_TAG_SUFFIX)}
  933. r.refs.import_refs(b'refs/tags', tags, message=message)
  934. return fetch_result.refs
  935. def ls_remote(remote, config=None, **kwargs):
  936. """List the refs in a remote.
  937. :param remote: Remote repository location
  938. :param config: Configuration to use
  939. :return: Dictionary with remote refs
  940. """
  941. if config is None:
  942. config = StackedConfig.default()
  943. client, host_path = get_transport_and_path(remote, config=config, **kwargs)
  944. return client.get_refs(host_path)
  945. def repack(repo):
  946. """Repack loose files in a repository.
  947. Currently this only packs loose objects.
  948. :param repo: Path to the repository
  949. """
  950. with open_repo_closing(repo) as r:
  951. r.object_store.pack_loose_objects()
  952. def pack_objects(repo, object_ids, packf, idxf, delta_window_size=None):
  953. """Pack objects into a file.
  954. :param repo: Path to the repository
  955. :param object_ids: List of object ids to write
  956. :param packf: File-like object to write to
  957. :param idxf: File-like object to write to (can be None)
  958. """
  959. with open_repo_closing(repo) as r:
  960. entries, data_sum = write_pack_objects(
  961. packf,
  962. r.object_store.iter_shas((oid, None) for oid in object_ids),
  963. delta_window_size=delta_window_size)
  964. if idxf is not None:
  965. entries = sorted([(k, v[0], v[1]) for (k, v) in entries.items()])
  966. write_pack_index(idxf, entries, data_sum)
  967. def ls_tree(repo, treeish=b"HEAD", outstream=sys.stdout, recursive=False,
  968. name_only=False):
  969. """List contents of a tree.
  970. :param repo: Path to the repository
  971. :param tree_ish: Tree id to list
  972. :param outstream: Output stream (defaults to stdout)
  973. :param recursive: Whether to recursively list files
  974. :param name_only: Only print item name
  975. """
  976. def list_tree(store, treeid, base):
  977. for (name, mode, sha) in store[treeid].iteritems():
  978. if base:
  979. name = posixpath.join(base, name)
  980. if name_only:
  981. outstream.write(name + b"\n")
  982. else:
  983. outstream.write(pretty_format_tree_entry(name, mode, sha))
  984. if stat.S_ISDIR(mode) and recursive:
  985. list_tree(store, sha, name)
  986. with open_repo_closing(repo) as r:
  987. tree = parse_tree(r, treeish)
  988. list_tree(r.object_store, tree.id, "")
  989. def remote_add(repo, name, url):
  990. """Add a remote.
  991. :param repo: Path to the repository
  992. :param name: Remote name
  993. :param url: Remote URL
  994. """
  995. if not isinstance(name, bytes):
  996. name = name.encode(DEFAULT_ENCODING)
  997. if not isinstance(url, bytes):
  998. url = url.encode(DEFAULT_ENCODING)
  999. with open_repo_closing(repo) as r:
  1000. c = r.get_config()
  1001. section = (b'remote', name)
  1002. if c.has_section(section):
  1003. raise RemoteExists(section)
  1004. c.set(section, b"url", url)
  1005. c.write_to_path()
  1006. def check_ignore(repo, paths, no_index=False):
  1007. """Debug gitignore files.
  1008. :param repo: Path to the repository
  1009. :param paths: List of paths to check for
  1010. :param no_index: Don't check index
  1011. :return: List of ignored files
  1012. """
  1013. with open_repo_closing(repo) as r:
  1014. index = r.open_index()
  1015. ignore_manager = IgnoreFilterManager.from_repo(r)
  1016. for path in paths:
  1017. if not no_index and path_to_tree_path(r.path, path) in index:
  1018. continue
  1019. if os.path.isabs(path):
  1020. path = os.path.relpath(path, r.path)
  1021. if ignore_manager.is_ignored(path):
  1022. yield path
  1023. def update_head(repo, target, detached=False, new_branch=None):
  1024. """Update HEAD to point at a new branch/commit.
  1025. Note that this does not actually update the working tree.
  1026. :param repo: Path to the repository
  1027. :param detach: Create a detached head
  1028. :param target: Branch or committish to switch to
  1029. :param new_branch: New branch to create
  1030. """
  1031. with open_repo_closing(repo) as r:
  1032. if new_branch is not None:
  1033. to_set = _make_branch_ref(new_branch)
  1034. else:
  1035. to_set = b"HEAD"
  1036. if detached:
  1037. # TODO(jelmer): Provide some way so that the actual ref gets
  1038. # updated rather than what it points to, so the delete isn't
  1039. # necessary.
  1040. del r.refs[to_set]
  1041. r.refs[to_set] = parse_commit(r, target).id
  1042. else:
  1043. r.refs.set_symbolic_ref(to_set, parse_ref(r, target))
  1044. if new_branch is not None:
  1045. r.refs.set_symbolic_ref(b"HEAD", to_set)
  1046. def check_mailmap(repo, contact):
  1047. """Check canonical name and email of contact.
  1048. :param repo: Path to the repository
  1049. :param contact: Contact name and/or email
  1050. :return: Canonical contact data
  1051. """
  1052. with open_repo_closing(repo) as r:
  1053. from dulwich.mailmap import Mailmap
  1054. import errno
  1055. try:
  1056. mailmap = Mailmap.from_path(os.path.join(r.path, '.mailmap'))
  1057. except IOError as e:
  1058. if e.errno != errno.ENOENT:
  1059. raise
  1060. mailmap = Mailmap()
  1061. return mailmap.lookup(contact)
  1062. def fsck(repo):
  1063. """Check a repository.
  1064. :param repo: A path to the repository
  1065. :return: Iterator over errors/warnings
  1066. """
  1067. with open_repo_closing(repo) as r:
  1068. # TODO(jelmer): check pack files
  1069. # TODO(jelmer): check graph
  1070. # TODO(jelmer): check refs
  1071. for sha in r.object_store:
  1072. o = r.object_store[sha]
  1073. try:
  1074. o.check()
  1075. except Exception as e:
  1076. yield (sha, e)
  1077. def stash_list(repo):
  1078. """List all stashes in a repository."""
  1079. with open_repo_closing(repo) as r:
  1080. from dulwich.stash import Stash
  1081. stash = Stash.from_repo(r)
  1082. return enumerate(list(stash.stashes()))
  1083. def stash_push(repo):
  1084. """Push a new stash onto the stack."""
  1085. with open_repo_closing(repo) as r:
  1086. from dulwich.stash import Stash
  1087. stash = Stash.from_repo(r)
  1088. stash.push()
  1089. def stash_pop(repo):
  1090. """Pop a new stash from the stack."""
  1091. with open_repo_closing(repo) as r:
  1092. from dulwich.stash import Stash
  1093. stash = Stash.from_repo(r)
  1094. stash.pop()
  1095. def ls_files(repo):
  1096. """List all files in an index."""
  1097. with open_repo_closing(repo) as r:
  1098. return sorted(r.open_index())
  1099. def describe(repo):
  1100. """Describe the repository version.
  1101. :param projdir: git repository root
  1102. :returns: a string description of the current git revision
  1103. Examples: "gabcdefh", "v0.1" or "v0.1-5-gabcdefh".
  1104. """
  1105. # Get the repository
  1106. with open_repo_closing(repo) as r:
  1107. # Get a list of all tags
  1108. refs = r.get_refs()
  1109. tags = {}
  1110. for key, value in refs.items():
  1111. key = key.decode()
  1112. obj = r.get_object(value)
  1113. if u'tags' not in key:
  1114. continue
  1115. _, tag = key.rsplit(u'/', 1)
  1116. try:
  1117. commit = obj.object
  1118. except AttributeError:
  1119. continue
  1120. else:
  1121. commit = r.get_object(commit[1])
  1122. tags[tag] = [
  1123. datetime.datetime(*time.gmtime(commit.commit_time)[:6]),
  1124. commit.id.decode('ascii'),
  1125. ]
  1126. sorted_tags = sorted(tags.items(),
  1127. key=lambda tag: tag[1][0],
  1128. reverse=True)
  1129. # If there are no tags, return the current commit
  1130. if len(sorted_tags) == 0:
  1131. return 'g{}'.format(r[r.head()].id.decode('ascii')[:7])
  1132. # We're now 0 commits from the top
  1133. commit_count = 0
  1134. # Get the latest commit
  1135. latest_commit = r[r.head()]
  1136. # Walk through all commits
  1137. walker = r.get_walker()
  1138. for entry in walker:
  1139. # Check if tag
  1140. commit_id = entry.commit.id.decode('ascii')
  1141. for tag in sorted_tags:
  1142. tag_name = tag[0]
  1143. tag_commit = tag[1][1]
  1144. if commit_id == tag_commit:
  1145. if commit_count == 0:
  1146. return tag_name
  1147. else:
  1148. return '{}-{}-g{}'.format(
  1149. tag_name,
  1150. commit_count,
  1151. latest_commit.id.decode('ascii')[:7])
  1152. commit_count += 1
  1153. # Return plain commit if no parent tag can be found
  1154. return 'g{}'.format(latest_commit.id.decode('ascii')[:7])