Tagged Questions
The checkout tag has no wiki summary.
140
votes
10answers
45k views
How do you merge selective files with git-merge?
I'm using git on a new project that has two parallel -- but currently experimental -- development branches:
master: import of existing codebase plus a few mods that I'm generally sure of
exp1: ...
50
votes
5answers
17k views
Is there any way to clone a git repository's sub-directory only?
I've got my git repo here:
http://github.com/nicksergeant/finisht/tree/master
Which, at the root, has two sub-dirs:
/finisht
/static
When this was in SVN, /finisht was checked out in one place, ...
33
votes
9answers
17k views
SVN checkout ignore folder
Can I ignore a folder on svn checkout? I need to ignore DOCs folder on checkout at my build server.
edit: Ignore externals isn't an option. I have some externals that I need.
25
votes
6answers
10k views
git: Switch branch and ignore any changes without committing
I have got the git branch I'm working on to a nice place. So I make a commit with a useful commit message. I then absentmindedly make minor changes to the code that are not work keeping. I now want to ...
21
votes
4answers
11k views
SVN checkout the contents of a folder, not the folder itself
I'm fairly new to linux and svn. I'm trying to checkout the trunk folder of a project into my public_html directory using this command (while in public_html):
svn checkout ...
18
votes
7answers
21k views
Difference between checkout and export in SVN
What is the exact difference between SVN checkout and SVN export?
From what I know, export does not include the .svn directory which include metadata, and checkout included that .svn directory. Yet, ...
16
votes
1answer
131 views
How to check php syntax of multiple files at once?
i have a svn server that i checkout the repository in my computer
the main repositiry is about 2k files
3rd party
generic code classes
custom classes
i have made changes to lots of files (mainly ...
13
votes
3answers
5k views
git: Retrieve a single file from a repository
What is the most efficient mechanism (in respect to data transferred and disk space used) to get the contents of a single file from a remote git repository?
So far I've managed to come up with:
git ...
13
votes
9answers
4k views
Subversion: Check out only those files affected during a specific commit
In Subversion, is it possible to check out only those files affected during a specific commit, provided you know the specific revision number?
10
votes
3answers
3k views
Is there a Subversion Checkout Hook or something similar?
I'm using a subversion repository and I want to know whenever somebody asks my repository for a checkout; like a 'svn co' or an 'svn up'. Is there a hook or some other method that I can use so that a ...
9
votes
3answers
9k views
How to download/checkout a project from Google Code in Windows?
How do I download a ZIP file of an entire project from Google Code when there are no prepared downloads available?
This is what I see on the checkout page:
Command-line access
Use this command ...
8
votes
4answers
3k views
Convert an SVN checkout to use git (git-svn)
I work with software that is kept in svn for version control. I would like to use git (git-svn) however the software requires lots of setup and configuration before it can be used. There are tools ...
7
votes
1answer
261 views
What is difference between “git checkout -f” and “git reset --hard HEAD”?
I need to revert local changes for deployments. (I'd used svn revert for this in old skool SVN days.)
And im using git reset --hard HEAD for this. (Also git fetch and git merge origin/$branch --no-ff ...
7
votes
1answer
4k views
Scripting TFS Command Line for Get Latest Version, Check Out and Check in, programmatically
I use WinXP, VS 2008 and Team Explorer to connect to Team Foundation Server.
I need to script (e.g. BAT file script) the following:
Get latest version of folder in Team Project.
Check out files of ...
7
votes
3answers
3k views
Why does Visual Studio check out the .vspscc file when I add a file to a project
If I add a new file to a project under TFS source control, it will check out the project file and the corresponding .vspscc file for that project file. The project file itself changes (to include the ...
7
votes
6answers
2k views
switch git branch without files checkout
Is it possible in git to switch to another branch without checking out all files? After switching branch I need to delete all files, regenerate them, commit and switch back. So checking out files is ...
7
votes
4answers
3k views
How to add/remove folders without downloading from the repository in Subversion?
I have a huge repository where I want to add/remove a folder. I haven't checked out anything yet. There is any way to do it fast?
7
votes
3answers
7k views
CVS Checkout to a directory
How do i check out a specific directory from CVS and omit the tree leading up to that directory?
EX.
Id like to checkout to this directory
C:/WebHost/MyWebApp/www
My CVS Project directory ...
6
votes
3answers
314 views
SVN change username
I found a lot examples on how to change the username for specific revisions and so on.
But what I nee is this:
I did a checkout with the authentication credentials of a workmate and need to change it ...
6
votes
4answers
202 views
Faking the depth of an SVN checkout
For some reason my local copy of an SVN repo stopped recognising the parent directory as a working copy. I would normally fix this by checking out again into another folder and overwriting the new ...
6
votes
2answers
2k views
Active Git branch is “(no branch)” on hudson CI
My Ant build.xml script starts with
<property environment="env"/>
<echo>GIT_BRANCH = ${env.GIT_BRANCH}</echo>
<echo>PWD = ${env.PWD}</echo>
Hudson CI is setup to ...
6
votes
3answers
1k views
How do I only Checkout (pull down) only parts of an SVN tree with TortoiseSVN?
I'm using TortoiseSVN and I want to do a Checkout of an existing repository into a local directory. However, I only want to pull down certain portions of the file tree. Is there a way I can do that?
...
6
votes
5answers
1k views
Subversion: Can I checkout, modify, and then make it a branch?
I did a checkout from my trunk to a local DIR and made lots of local changes there. Now I don't want to commit it back to the trunk, but I'd rather make a branch from this local version. Is that ...
6
votes
1answer
383 views
CVS checkout ignore corrupted files
Is there a way to have CVS checkout everything and if it hits corrupted files it will just skip them and go on?
6
votes
7answers
12k views
How can I list files in CVS without an initial checkout?
How can I list files CVS without an initial checkout?
In subversion I can simply do "svn ls http://svn.svn.com" in CVS how can I do this?
For example I've got this CVS connection:
...
5
votes
1answer
171 views
Are there different meanings to the concept of 'tracking' in git?
I run 'git branch -r' and get
origin/branch1
origin/branch2
From the man page, the -r option will "list or delete (if used with -d) the remote-tracking branches". So origin/branch1 and ...
5
votes
4answers
2k views
Check-out for edit an item in TFS programmatically
I'm working on an utility processing files being under source control using TFS 2010.
If an item is not yet checked-out for edit, I'm getting an exception, what is definitely predictable because file ...
5
votes
3answers
363 views
GIT: commit changes to old/safe branch while in new/dirty/dev branch without checking out or losing unstaged data
I created a new Branch before I started dev on something experimental. I usually forget that (which isn't a problem), but now I did it beforehand.
Since then I have updated 3 files.
In 2 are only ...
5
votes
3answers
170 views
Clean checkout from TFS 2008
I want to pass a project to a colleague without SCC bindings to avoid accidental changes in my repository.
Is it possible to do a clean checkout from a TFS 2008 repo? I'm going crazy finding such an ...
5
votes
1answer
7k views
Express Checkout error message: “Security header is not valid”
I'm implementing Express Checkout in PayPal.
I have no problem with the first two steps, SetExpressCheckout and GetExpressCheckout. But when I use DoExpressCheckout, I encounter the error "Security ...
5
votes
6answers
3k views
How do I do an exclusive checkout in SVN?
I'm looking for a way to make an exclusive checkout from SVN.
Is there a way to automatically lock a file when it's being checked out ?
If one user makes an exclusive checkout, and then another ...
5
votes
2answers
2k views
Why does vwd.webinfo always get automatically checked out from source control?
We have a 2008 solution that has a file system website as part of the solution. This solution is under source control with Team Foundation Server. Every time the solution is closed it either checks ...
5
votes
8answers
480 views
What are some tips to make my project compile on a fresh checkout every time?
More times than I'd like to admit I've had people new to a project do a checkout only to find they are missing various resources, dll's, settings. I'd like to get in the proper habit of having my ...
5
votes
5answers
2k views
Subversion large repos import/checkout
My normal work flow to create a new repository with subversion is to create a new repos, do a checkout of the repos root, create my branches tags and trunk folders and place in the trunk my initial ...
4
votes
2answers
86 views
Cloning Mercurial Repositories from C#?
I am writing an application that will allow users to schedule repeating tasks that download/package up files from any number of sources (SVN/Mercurial/etc).
I have managed to implement everything ...
4
votes
3answers
112 views
Why does 'git checkout' work only for some branches?
Here is the result of two checkouts: why the second is failing? 'git status' shows some files have been modified, but I am sure I haven't touched those files.
...
4
votes
1answer
85 views
How to reset the shipping addresss paypal while checkout?
I'm integrating PayPal into my web application. Here I want to make complete checkout process.It has direct payment and express checkout.
In Express checkout we need only PayPal account like
...
4
votes
1answer
112 views
Google checkout sandbox for buyer problem
I am an ASP.Net Web developer and trying to create Google checkout test account. As instructions are given here https://checkout.google.com/support/sell/bin/answer.py?answer=134469 I am trying to ...
4
votes
2answers
167 views
How to check out file in Git?
Okay so I just started using github.com and my friend and I are working on this project. How can I pull parts of the project but check out certain files I'm working on so he doesn't work on them. He ...
4
votes
2answers
328 views
SVN via Eclipse - Cannot run the code I've checked out
I'm using SVN in Eclipse. I checked out a folder as a project in the workspace. The folder I checked out has a subfolder "trunk", and in the subfolder "trunk" I have my src folder (and other stuff). ...
4
votes
4answers
168 views
What kind of code can I use GitHub for?
What kind of code (what coding languages) can I use GitHub for? Can I use it for websites? Flash? Can I upload images files and other resources?
(I am completely unfamiliar with Git and SVN.)
4
votes
3answers
219 views
Git. Checkout feature branch between merge commits
It's kind weird, but I can't fulfill a pretty common operation with git. Basically what I want is to checkout a feature branch, not using it's head but using SHA id. This SHA points between merges ...
4
votes
1answer
2k views
git says everything-up-to-date when pushing changes to a remote branch
i have commits that are in a remote repository (origin/master) which i want to put in a branch created from that repository (origin/remote_branch).
when i checkout to that remote branch
git checkout ...
4
votes
2answers
441 views
Merge two checkouts in bazaar
I'm just starting out with bazaar, and I've found that the checkout feature is the most useful for the way I work - namely I can c/o from a "master copy", do some development and then commit my ...
4
votes
7answers
2k views
Subversion Exclusive Checkout and Subversion Plugin for Delphi
Is there currently a feature that allows a exclusive checkout in SVN?
and
Is there a good plugin for Delphi that allows the access via IDE?
4
votes
4answers
5k views
SVN checkout with svn protocol
I've been using SVN a lot as a single user on a single computer
Now i'd like to share my stuff across multiple computers
So far I've been checking out from "file://c:/myproject"
i'd like to ...
4
votes
5answers
3k views
SVN checkout filtered by file extension?
I have a home-grown automated build script in the form of a DOS batch file. In part of that script, I check out (with "svn checkout") a section of our SVN repository that includes a bunch of ...
3
votes
3answers
48 views
Compare about using checkout or reset hard to undo git commit
If I use:
$ git reset --hard HEAD~N
or
$ git checkout HEAD~N
Both of two will use the version of HEAD~N to change working directory and stage area.
If there is any different between these two ...
3
votes
3answers
56 views
Skip directory in SVN checkout? (Partial checkout)
Suppose a remote SVN repository has this structure:
/project
/src
/bulk
Now for some reason I already have a copy of bulk (assumed unchanging or rarely changing) elsewhere on my ...
3
votes
1answer
67 views
File Level Tracking In Git (Files from multiple branches in same directory)
Is there any script that lets one remember branch/commit seperatly for files in some directory so that one can simultaneously work on file1 on branch1 and file2 on branch2 in the same directory and ...