Tagged Questions
-1
votes
1answer
41 views
closed source version control software [closed]
Why would some people purchase closed source version control software (such as Code co-op and plastic SCM) while there are many open source software like git, Mercurial and Bazaar? Does closed source ...
0
votes
0answers
7 views
Big project layout [migrated]
I want to know how to manage a big project with many components with version control management system.
In my current project there are 4 major parts.
Web
Server
Admin console
Platform.
The web ...
0
votes
2answers
35 views
Converting from Hg to git, taking opportunity to edit history
So I have a Mercurial repository that I want to convert to git, nothing special there, I know how do that, fast-export as explained here is a brilliant tool for that.
What I want to do, is take this ...
0
votes
1answer
40 views
BitBucket: how to track a repo's branches in its Wiki repo?
I have a (Mercurial) repo on BitBucket where I have a documentation directory to keep some simple markdown files
project
.hg
.hgignore
src
many files
doc
Home.md
...
-1
votes
2answers
43 views
What are benefits of having commit and push in git/mercurial
I found few answers on commit/push topic here in stackoverflow.
But, this answers are about difference in commiting and pushing in which I'm not interested.
My question is, why do we need local commit ...
1
vote
3answers
83 views
Removing '.git' directory from git repo?
I'm trying to migrate a git repo from Kiln to Github. I can add the new remote just fine, but when I try to push master to the new remote, I get the following error:
Counting objects: 8691, done.
...
1
vote
4answers
78 views
A version control system with minimum space requirements on the client side, and is good with binaries [closed]
(This is my first post so be gentle)
I am using subversion as version control on large binary.
I have about 2.5 gigs of binaries that I update hourly.
I get about 400 megs worth of differents each ...
0
votes
1answer
41 views
Is there a mercurial plugin to provide github style calendar contributions?
The github contributions calendar is really nice. Is there a mercurial plugin which produces similar d3.js calendars for Hg repositories?
0
votes
3answers
56 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
72 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
50 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
39 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
59 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
1answer
66 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 ...
4
votes
3answers
601 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 ...