0
votes
4answers
32 views

Total Count of Change Sets for Mercurial and Git

Is it possible to count the number of Mercurial/Git change sets with a simple command line with arguments?
3
votes
2answers
47 views

Using PlasticSCM (or any DVCS client) to connect to TFS

Has anyone used the PlasticSCM client tools to work against a TFS repository? Basically my current client is using the new hosted TFS for version control (not TFS-Git, just standard TFS), but I have ...
1
vote
1answer
41 views

Using git with Logic Pro

tl;dr: Will git or Mercurial have problems versioning a project with a few small files that change frequently and many large files that can change but rarely do? I write music using Logic Pro, and ...
0
votes
0answers
38 views

Split a repository, preserving relevant history and hiding irrelevant history

Suppose I have a repository like ~/src/.hg (or .git) ~/src/public ~/src/private There may be events in the history which changed files in both private and public in the same commit. I want to ...
0
votes
2answers
51 views

Dependency Management In SCM

For the sake of argument let's say I am working on a project, X, which has a dependency, Y. Now Y is a stand alone open source project regularly maintained and updated by third parties. I check out ...
1
vote
0answers
33 views

Hg-git not pushing commits on Github

I have this problem with hg-git where I can't push any commits to Github anymore. When before I had no problems at all. I have a Mercurial repo in Bitbucket where I push to Github, with hg push ...
3
votes
3answers
206 views

Convert Mercurial project to Git

I need to convert a mercurial project to a git project, but I would like to keep the commit history in tact, my current solution was to just remove hg related files and then git init && add ...
1
vote
1answer
33 views

How to use mercurial or git subrepositories that are connected to the latest release tag?

I am looking for a solution that would allow me to use subrepositories that are getting not the HEAD and instead a specific RELEASE tag, or if possible the latest tag. Is this possible, how should I ...
-1
votes
2answers
98 views

Which version control is the best for a single coder [closed]

SVN, Git, or Mecurial? Which is the best for a single coder who just wants to backup his code and keep track of changes. Also I don't want to host it anywhere. I want to be able to use it locally even ...
1
vote
4answers
97 views

Coming from mercurial to git - merging?

I have used mercurial for quite some time and now I switched to git, because my new team uses it as default version control tool. Let me explain - In mercurial I clone project from bitbucket, i make ...
1
vote
2answers
119 views

git equivalent of 'hg serve'?

Is there some sort of addon you can use to have a git equivalent of the Mercurial hg serve ('hg serve' starts a local web-server which allows you to browse the repository history/branches etc)
-1
votes
1answer
64 views

SCM for a Large Modular Code Base

I need some help designing a SCM for my codebase. The codebase is fairly complex, so first, I will try to describe it. The code base is made up of code for many different products, let's say Product1 ...
1
vote
1answer
79 views

Using git-remote-hg on windows

According to this answer http://stackoverflow.com/a/13354944/867294 it should be fairly easy to set up git to work with mercurial "no dependencies or anything". This doesn't seem to work all that ...
2
votes
1answer
113 views

Access Mercurial repo with Git on windows

Since version 1.8.1 git is including Felipes git-remote-hg . Unfortunately fetching/cloning from a Hg repo with TortoiseGit 1.8.1 and Git for Windows 1.8.1.2 ends in the following error: fatal: git ...
2
votes
1answer
103 views

Is there a mercurial equivalent to gits no-fast-forward merge?

What is the mercurial equivalent to gits no-fast-forward merge (in case a fast forward would be possible)? Edit Assume you have a branch/bookmark at your head/tip of master/default: o feature | ...
0
votes
0answers
54 views

Invalid Email addrss - Hg git

Why do I get "Invalid Email Address" when commiting to GitHub through TortoiseHg Hg-git plugin? The push works fine, however the email address is invalid. I have tried many "solutions": Add this to ...
2
votes
1answer
144 views

TFS Shelve vs DVCS (e.g Git, Mercurial) offline commits

While presenting DVCS concepts to my TFS-using co-workers, I was stumbled with the following questions: "How is these 'offline commits' are different than TFS shelving? I can use it to backup my ...
1
vote
1answer
91 views

Git merge 2 versions no common ancestor

I have my source code in a mercurial repo, whereas the master branch has been moved from mercurial to a git repo. The current git master branch head and my mercurial version has conflicts. The git ...
1
vote
4answers
57 views

how to embed DVCS revision information when building without it

In my build system, every time I run a new build I save revision and hash information of the current commit in a few variables, and use them in my sources without issues. For example the window title ...
1
vote
1answer
43 views

Is there a way in a VCS to have a child branch that only syncs a few specific folders/files from the parent?

Lets say I have repository for a project that has a bunch of folders and files lets call it master. /3rdPartyJars /compass /js /deploy /js /python build.xml When I deploy to the production server ...
2
votes
4answers
79 views

Do I have to 'git add' a file each time it gets committed?

I've used Mercurial before but plan on switching to Git in the near future. All of the tutorials I've seen that explain how Git works show that files are added to the stage ('git add') before each ...
0
votes
1answer
25 views

Unable to clone from a repo from different user

On my local, there are two user accounts. 1) User 2) Hadoop I mostly develop code on User and then copy in to hadoop to use it.. So instead of going this long route, i thought, maybe i can push ...
4
votes
1answer
72 views

git branch in hg subrepo

I have a mercurial project in which I would like to use jQuery-File-Upload. I added the following to my .hgsub file in order to create a subrepo for this plugin: public/assets/common/js/filedrop = ...
1
vote
4answers
112 views

How to save disk usage when cloning git or hg repositories?

I have cloned few trees into my local disk and it takes too much space from my limited laptop disk. Unlike non-distributed version controls, such as SVN and CVS, when you checkout a git or Mercurial ...
0
votes
2answers
117 views

pushing a git repo fails with error: contains '.git'

I converted a few mercurial repos to git using the hg-fast-export tool and while all of them were converted fine, one produced the following error when I pushed the repo. $ git remote add origin ...
2
votes
2answers
96 views

Can't merge feature bookmark into master bookmark in mercurial

I've been trying to do more branching in Mercurial and decided to use bookmarks to do it. This particular repo pushes not only to a mercurial repo, but also to a git repo via hg-git. I'm using ...
0
votes
3answers
88 views

Using Git/Hg repository as template project

Is there a way to achieve something similar to what this guy does with SVN? How to use a subversion repository as a template for new projects? I have a basic ASP.NET MVC project, which is essentially ...
2
votes
2answers
91 views

Concurrently manage single project across different SCM systems

I currently have a project hosted on a private Git repo which I manage using sourcetree. Recently I decided to collaborate with a group of friends on this project. However they prefer Mercurial & ...
0
votes
1answer
75 views

git-remote-hg use “--insecure” in git clone hg::someurl

I use git for vcs, and I started working with a group that uses mercurial. Therefore I've been checking out git-remote-hg as a bridge. However, the hg repos are behind https, with a self-signed ...
3
votes
4answers
129 views

Mirroring repository via fileserver

Is it possible to mirror a repository (in your choice of SVN, Git, Hg, etc.) by publishing changes to a "dumb" fileserver, and re-assembling them at the other end? Possible concerns include ...
3
votes
4answers
128 views

Partial branch or partial merge or other way to help me to sync dotfiles?

I don't know how to make my requirement short in title, sorry if it is not meaningful. I will explain here: Many people put their dotfiles on bitbucket or github, to ease later installation or ...
4
votes
3answers
182 views

Git equivalent of “hg id”?

Does Git have any command equivalent to Mercurial's "hg id"? I.e. a command that prints the parent commit's hash and a plus sign if there are changes in the working directory?
0
votes
1answer
47 views

Git custom SSH commmand

I am trying to find a way to run git with a custom ssh command when needed. I do not want to use any configuration files or environmental variables. I would just like to use something like the -e ...
0
votes
1answer
98 views

Hg-git stopped working for multiple branches

I keep the main repo on mercurial but made a clone with hg-git for git lovers. The problem is that in the mercurial repo I went back to a previous commit, created a new anonymous branch and closed ...
1
vote
1answer
196 views

What are branches in BitBucket and how to manage them

I have the following problem. I have a repo, which I originally cloned from github using hg-git, but since I've been developing on it in mercurial. The original dev also keeps updating the repo, so we ...
0
votes
1answer
73 views

How to unstage changes but keep tracking a file in Mercurial?

For example, I have 2 files: A and B Both of them are tracked and modified then. What I want to do is to commit one file at one time. In git, I can do it like this: git add A git commit -m "add A" ...
0
votes
2answers
78 views

Is it possible to transfer TortoiseSVN (on Windows7) to TortoiseHG (on Linux)?

If I have two boxes both with Windows OS, that's no problem for me. However, suppose I have different OS platforms: I currently use TortoiseSVN on my Windows 7 box, but I'll switch to using Ubuntu ...
2
votes
3answers
94 views

A DRCS (git, bzr, merc) that has “pending changesets” like perforce?

We have perforce at work and one thing about it really seems to work quite well with the workflow and that is pending changesets. I can make a new pending changeset, assign changes to it, assign jira ...
9
votes
2answers
398 views

rsync exclude according to .gitignore & .hgignore & svn:ignore like --filter=:C

Rsync includes a nifty option --cvs-exclude to “ignore files in the same way CVS does”, but CVS has been obsolete for years. Is there any way to make it also exclude files which would be ignored by ...
5
votes
2answers
80 views

Show parents of uncommitted merge in git

How can I see the parents of an uncommitted merge in git? I can see one parent by doing git log -1 but how do I see the other parent? This is easy to do in Mercurial: $ hg parents changeset: ...
1
vote
2answers
101 views

Perforce: how to track file “deployments”

We are a very small team using Oracle Forms / Reports as development tools, and we're using no version control at the moment. We are considering using Perforce as our version control software. Our ...
4
votes
5answers
171 views

Large 66GiB legacy CVS repo — it is a good idea to migrate to GIT or Mercurial?

We have a very large legacy CVS repo (66GiB) over a decade and increasing. Now we have some sub-contract companies, which need to work on some modules and branches. We need to create some branches ...
0
votes
2answers
697 views

lntelliJ IDEA EAP 12 and Bitbucket ( Git or Mercurial )

My Sytem setup is Windows 7 64-bit IntelliJ IDEA EAP 12 version 122.639 Java 1.6 I am a non Admin user. I have an android project which I want to keep under version control on Bitbucket. I have ...
2
votes
3answers
174 views

git commit --verbose equivalent in mercurial?

In git, I can do "git commit --verbose" to show me a diff right there in the message editor. I don't see any option for it in mercurial. Is there a mercurial plugin to show me a diff in the message ...
2
votes
3answers
133 views

Do we need a DVCS for a school project?

We are about to start a simple webservice project with some JSP/servlet code as part of a course. We are a team of 4 and 3 of us have not used Version Control Software, ever. I plan to host the ...
0
votes
1answer
59 views

How can I address different types of VCS repos

I have a small library and I want to make it possible to the users to add some additional components to the library with the config file. The user can create file config and to add there some stings ...
1
vote
1answer
105 views

How to commit hg repo with GIT submodule which should be read only?

my Hg repo now needs to include a Git submodule (Restkit) as per the advised method in the site wiki. However, I am not updating the git contents and should only be potentially reading/pulling in ...
0
votes
0answers
73 views

Mercurial/Git maintaining redundant repositories [closed]

I would like to have multiple redundant copies of the repositories to add reliability to my system, for e.g If one remote repository goes down, users should be able to deliver their changes to another ...
1
vote
1answer
118 views

How do I clone/pull from GitHub, but push to Kiln?

I don't necessarily have a preference for either Git or Mercurial. I have both of them installed and find them equally difficult to get my head around. I mainly use Mercurial because our repositories ...
1
vote
1answer
139 views

Mercurial and Git custom SSH key location

Exists there any way to define for each cloned repo the path of which SSH key pair it should use?

1 2 3 4 5 11