A Scalable, User-Friendly Source Control System.
Go to file
Tony Tung 8e6c49b333 [ctree] test for removal of empty directories upon removal
Summary:
When we remove a file, we need to remove all the empty directories that lead to that file.  This test ensures that we are accomplishing this.

Note that when we put in the fix for '/' "feature", this test may no longer work.

Test Plan: pass unit tests.

Reviewers: #fastmanifest, durham

Reviewed By: durham

Subscribers: durham, mitrandir, mjpieters

Differential Revision: https://phabricator.intern.facebook.com/D3855366

Signature: t1:3855366:1473807483:66bd4650ee014e7da3fa62ef529af0467462aeb9
2016-09-18 13:40:28 -07:00
cfastmanifest port upgrades of buffer.h into clib 2016-08-26 17:14:52 -07:00
clib port upgrades of buffer.h into clib 2016-08-26 17:14:52 -07:00
contrib debian: mark us as breaking hg older than 3.5, and enhancing mercurial 2015-09-14 12:37:07 -04:00
fastannotate fastannotate: skip flushing revmap if nothing changed 2016-09-08 21:01:47 +01:00
fastmanifest fastmanifest: fix hybridmanifestctx to match upstream 2016-09-14 16:08:55 -07:00
hgext3rd reset: make reset support -r/--rev as this is what people often expect 2016-09-15 08:49:23 -07:00
infinitepush infinitepush: lint fixes 2016-09-16 01:45:33 -07:00
linelog linelogcli: add new command getalllines 2016-08-15 12:47:14 +01:00
phabricator conduit: stop using httplib 2016-07-04 03:00:37 -07:00
remotefilelog [ctree] use a const char* to represent the flag 2016-09-18 13:40:14 -07:00
scripts scm-prompt: use double square brackets everywhere 2016-07-22 16:31:51 -07:00
sqldirstate sqldirstate: make cache treshold configurable 2016-08-31 06:09:50 -07:00
tests [ctree] test for removal of empty directories upon removal 2016-09-18 13:40:28 -07:00
treemanifest ctree: add ctreemanifest hg extension 2016-08-29 16:19:52 -07:00
.editorconfig Add editorconfig 2016-04-20 03:05:42 -07:00
.hgignore merge .hgignore contents 2016-08-26 06:27:59 -07:00
cfastmanifest.c [cfastmanifest] add PyObject_Del to dealloc method 2016-08-09 13:47:49 -07:00
CMakeLists.txt port upgrades of buffer.h into clib 2016-08-26 17:14:52 -07:00
COPYING Initial commit with extensions and readme 2014-06-02 12:54:54 -07:00
Makefile merge Makefile contents 2016-08-26 06:27:59 -07:00
README.md rewrite intro paragraph to README.md 2016-08-26 08:46:48 -07:00
setup.py port upgrades of buffer.h into clib 2016-08-26 17:14:52 -07:00
statprof.py Fix clock now 2016-08-25 12:07:11 -07:00

fb-hgext

This is a collection of Mercurial extensions written at Facebook. Many of them are in heavy use by thousands of users on a daily basis. However, some of them are very specific to Facebook's very large repositories so their value to others will vary. We're still making these open source as examples of the workflows we use and direction we are working.

Note that there will be extensions included here that only work with Facebook's internal infrastructure; they are included to give you an idea of how we integrate mercurial with our workflows.

Below are snippets about some of the extensions contained here.

smartlog

An extension that adds the 'hg smartlog' command. It prints graph log output containing only the commits relevant to yourself. Shows your bookmarks, the @ or master bookmark, and any draft commits without bookmarks that you've made within the past 2 weeks. Any commits in the graph that are skipped are represented by '...'.

We recommend also having an 'hg sl' alias that gives more concise output:

alias.sl=smartlog --template "{shortest(node)}  {author|user}  {bookmarks % '{ifeq(bookmark, current, label(\"yellow\", \" {bookmark}*\"), label(\"green\", \" {bookmark}\"))}'} {ifeq(branch, 'default', '', label(\"bold\", branch))}\n{desc|firstline}\n\n"

githelp

An extension that adds the 'hg githelp' command. It translates Git commands into Mercurial commands. Example:

$ hg githelp -- git rebase origin/master
  hg rebase -d master

$ hg githelp -- reset --hard HEAD^
  hg strip -r .

So it acts as a useful cheat sheet tool for people moving from Git to Mercurial.

backups

An extension that adds the 'hg backups' command. 'hg backups' prints a list of recently deleted commits (by reading your .hg/strip-backups directory) and allows you to recover a commit by doing 'hg backups --recover '. It prints the missing commits in reverse chronological order, and acts as a pseudo-replacement for Git's reflog.

fbamend

An extension that adds the 'hg amend --rebase' command. When working with a stack of commits, it's currently impossible to amend a commit in the middle of the stack. This extension enables that ability, adds a 'hg amend' command that invokes 'hg commit --amend', and adds a --rebase flag to 'hg amend --rebase' that rebase all the children of the commit onto the newly amended version.

If 'hg amend' is run on a commit in the middle of a stack without using --rebase, the amend succeeds and the old version of the commit is left behind with a marker bookmark on it 'bookmarkname(preamend)'. The user can then run 'hg amend --fixup' to post-humously rebase the children onto the new version of the commit.

uncommit

Adds a 'hg uncommit' command, which undoes the effect of a local commit. This allows you to either undo a mistake, or remove files from a commit which weren't intended for it.

By default it uncommits all the files, and completely hides the changeset. However, if filenames are specified then it will create a new changeset excluding those files and leave the files in a dirty state in the working dir. In all cases, files are left unchanged in the working dir, so other local changes are unaffected.

Uncommit does work in the middle of a stack of changes (possibly creating a new head), but cannot be used to undo a merge changeset.

chistedit

An interactive ncurses interface to histedit.

NOTE: This requires python-curses installed and Mercurial's histedit extension enabled.

This extensions allows you to interactively move around changesets or change the action to perform while keeping track of possible conflicts.

upgradegeneraldelta

Upgrades manifests to generaldelta in-place, without needing to reclone.

Contributing

Patches are welcome as pull requests, though they will be collapsed and rebased to maintain a linear history.

We (Facebook) have to ask for a "Contributor License Agreement" from someone who sends in a patch or code that we want to include in the codebase. This is a legal requirement; a similar situation applies to Apache and other ASF projects.

If we ask you to fill out a CLA we'll direct you to our online CLA page where you can complete it easily. We use the same form as the Apache CLA so that friction is minimal.

License

These extensions are made available under the terms of the GNU General Public License version 2, or any later version. See the COPYING file that accompanies this distribution for the full text of the license.