SlideShare a Scribd company logo
Mercurial
Md.Sifatul Islam
Mahdi Uz Zaman
Saad Ziaul Hasan
Md. Walid Amin Khan
Introduction
Created by Matt Mackall, 2005
Mainly implemented using the
Python
A binary diff implementation
written in C.
Main Features
Distributed architecture
Platform Independent
Fast and easy to use
Extensible
Open source
Handle both plain text and binary
files
Advanced branching and merging
capabilities
Functionality Distributed revision-control
Collaborative development
Mercurial usage is
almost same as git
Thank you!

More Related Content

PDF
Purposeful Collaboration in the Cloud with Confluence on Demand - James Dellow
PDF
2013 Perforce Collaboration Tour - Git Fusion
PDF
Navigating the Container Orchestration Maze
PPTX
Fly Buys website development using SharePoint 2007
PPTX
CI CD Daridabad MuleSoft meetup
PPT
Fist Vss Source Code Management Techniques
PDF
400.RED HAT OPENSHIFT APPLICATION RUNTIMES(RHOAR) 를 활용한 Cloud Native App 전환
PDF
CBDW2014 - Intro to ContentBox Modular CMS for Java and ColdFusion
Purposeful Collaboration in the Cloud with Confluence on Demand - James Dellow
2013 Perforce Collaboration Tour - Git Fusion
Navigating the Container Orchestration Maze
Fly Buys website development using SharePoint 2007
CI CD Daridabad MuleSoft meetup
Fist Vss Source Code Management Techniques
400.RED HAT OPENSHIFT APPLICATION RUNTIMES(RHOAR) 를 활용한 Cloud Native App 전환
CBDW2014 - Intro to ContentBox Modular CMS for Java and ColdFusion

Recently uploaded (20)

PDF
A comparative analysis of optical character recognition models for extracting...
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Mushroom cultivation and it's methods.pdf
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Encapsulation theory and applications.pdf
PDF
WOOl fibre morphology and structure.pdf for textiles
PDF
Hybrid model detection and classification of lung cancer
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
A Presentation on Touch Screen Technology
PPTX
cloud_computing_Infrastucture_as_cloud_p
PPTX
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
PDF
Heart disease approach using modified random forest and particle swarm optimi...
PDF
Web App vs Mobile App What Should You Build First.pdf
PDF
A novel scalable deep ensemble learning framework for big data classification...
PDF
Approach and Philosophy of On baking technology
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PPTX
OMC Textile Division Presentation 2021.pptx
PDF
Getting Started with Data Integration: FME Form 101
PPTX
A Presentation on Artificial Intelligence
PPTX
Chapter 5: Probability Theory and Statistics
A comparative analysis of optical character recognition models for extracting...
Encapsulation_ Review paper, used for researhc scholars
Mushroom cultivation and it's methods.pdf
Unlocking AI with Model Context Protocol (MCP)
Encapsulation theory and applications.pdf
WOOl fibre morphology and structure.pdf for textiles
Hybrid model detection and classification of lung cancer
Agricultural_Statistics_at_a_Glance_2022_0.pdf
A Presentation on Touch Screen Technology
cloud_computing_Infrastucture_as_cloud_p
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
Heart disease approach using modified random forest and particle swarm optimi...
Web App vs Mobile App What Should You Build First.pdf
A novel scalable deep ensemble learning framework for big data classification...
Approach and Philosophy of On baking technology
Assigned Numbers - 2025 - Bluetooth® Document
OMC Textile Division Presentation 2021.pptx
Getting Started with Data Integration: FME Form 101
A Presentation on Artificial Intelligence
Chapter 5: Probability Theory and Statistics
Ad
Ad

Mercurial

Editor's Notes

  • #3: Diff is a data comparison tool used to compare between two lines of a code
  • #4: Distributed Architecture: This way it works independent of network access or a central server. Platform independence: Therefore most of Mercurial is written in Python. Fast: You can generate diffs between revisions, or jump back in time within seconds. Extensible: Extensions can change the workings of the basic commands, add new commands. Easy to use: Basic interface is easy to use, easy to learn and hard to break. Open source: Mercurial is free software licensed.
  • #5: Diff is a data comparison tool used to compare between two lines of a code
  • #6: http://stackoverflow.com/questions/35837/what-is-the-difference-between-mercurial-and-git Mercurial commands are plain and not special at all -- the only unusual thing is the --force flag to hg pull, which is needed since Mercurial will abort otherwise when you pull from an unrelated repository.