Questions tagged [source-control]

26 questions
211
votes
5 answers

Git - List all files currently under source control?

Is there a way to list all files currently under source control in git? (Not just those that have been modified).
Anonymous
  • 2,541
  • 4
  • 23
  • 31
52
votes
4 answers

How do you install git-filter-repo?

I'm attempting to use git-filter-repo to remove large binaries from my repository. I have not used python before. I installed the latest python by clicking on the downloaded .exe file as that is a requirement of git-filter-repo. The instructions…
CBFT
  • 733
  • 1
  • 5
  • 9
11
votes
1 answer

How do I download a Bazaar branch without installing anything?

I would like to download the source at http://bazaar.launchpad.net/~mysql-clr-team/connectornet/trunk/files/954. I don't see any zip options as I do with other source control systems. How can I download the source of the latest revision or one…
user3109
5
votes
2 answers

Can checkout and track git branch, but cannot pull

So we have a branch in our git repo called creative_market. I run the command git checkout --track origin/creative_market which works fine. All of the changes that should be on the creative_market branch are present. However, if I run git pull I get…
Mike Lentini
  • 153
  • 1
  • 1
  • 6
3
votes
4 answers

Why is my RTC repository workspace not loaded?

On Friday, my Rational Team Concert repository workspace was loaded in my local RTC Eclipse environment with folders on my hard drive Today, for some reason RTC does not consider it "loaded". It is giving me a "Accepting incoming changes into a…
Leo
  • 219
  • 2
  • 5
  • 12
3
votes
2 answers

websvn garbles java source files

It appears to be attempting to interpolate Javadoc links into standard Java classes, among other things. The resultant output is fairly difficult to read. For instance, I am defining a Queue at one point: private Queue replyQueue; WebSVN is…
Joseph Weissman
  • 277
  • 1
  • 4
  • 14
2
votes
1 answer

What happens to a branch when the master is deleted?

Say I create a branch of folder Master in my repository and make some commits to it. I used TortoiseSVN's Create Branch command, which executes: svn copy FROMURL TOURL to create the branch on the server using the HEAD revision. Later, the SVN…
Nick Udell
  • 159
  • 1
  • 4
  • 18
2
votes
1 answer

If you cancel a subversion commit, are the so-far sent files committed?

On a subversion repo, I just added 2 GB (100 files) to my local copy, and committed. FTR this is using the popular Versions.app as a client - the repo is an ordinary xp-dev svn repo. It's now 1/2 way through and has uploaded half the files to the…
Fattie
  • 111
  • 15
2
votes
4 answers

Are TFS and salesforce compatible?

I am looking to see if TFS and salesforce will integrate. I want to use TFS for source control for my Apex classes, triggers, VS pages. Would using the salesforce editor be a better choice to integrate the source control with than visual…
2
votes
1 answer

How to push changes from a live deployment web server back to the git repository

I'm working in an environment where the developers work directly with script and image files on the live deployment web server. This is scary and has caused a few, though so far surprisingly few, issues. Source control is not used at all for these…
2
votes
0 answers

What are ".metadata" directories for

I've been asked to take ownership of an old code base. There are a lot of unusual things in the git repo including loads directories called ".metadata". Each of these directories contains a one or more properties files that defines the following…
Stormcloud
  • 153
  • 4
2
votes
1 answer

Team foundation server how to find a particular user's check-in only

In the Source Control Explorer, against a project by the View History I can see all the check-in done by the users. In case if I want to see a particular user's check-in only, how can I filter? Configurations: I'm using Team Foundation Server 2012…
1
vote
1 answer

Mercurial for Source Control (and backup) instead of Subversion

Currently I'm using Subversion for keeping source changes centralized and also as a single point of backup. All users commit changes to the server and the server is backed up. I'm wondering how something like Mercurial would work in a similar…
Nate
  • 839
  • 4
  • 15
  • 29
1
vote
1 answer

tortoise-hg export changeset between revisions

Is there a way to export the changelog from tortoise-hg between two revisions? I'm looking to get a list of all file changes along with the associated commit messages. I need this information to make an exhaustive patch note document.
JF Dion
  • 111
  • 4
1
vote
1 answer

Is there a way to match — or clean up — a forked git local repository branches to what exists upstream?

I have a fork of ERPNext from several months ago. Upstream has cleaned out a lot of branches since I forked, so my repo now has 184 branches, while upstream only has 41 branches. Is there a way to sync the removal of those branches?
laydros
  • 13
  • 2
1
2