sapling/hgext/whereami.py
Jun Wu 3adc813687 codemod: add copyright headers
Summary: This is just the result of running `./contrib/fix-code.py $(hg files .)`

Reviewed By: ikostia

Differential Revision: D10213075

fbshipit-source-id: 88577c9b9588a5b44fcf1fe6f0082815dfeb363a
2018-10-26 15:09:12 -07:00

26 lines
690 B
Python

# Copyright 2017 Facebook, Inc.
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
from mercurial import registrar
from mercurial.node import hex, nullid
cmdtable = {}
command = registrar.command(cmdtable)
testedwith = "ships-with-fb-hgext"
@command("whereami")
def whereami(ui, repo, *args, **opts):
"""output the current working directory parents
Outputs the hashes of current working directory parents separated
by newline.
"""
parents = repo.dirstate.parents()
ui.status("%s\n" % hex(parents[0]))
if parents[1] != nullid:
ui.status("%s\n" % hex(parents[1]))