Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
233 views

How can I set up Git for local commits while using P4 for remote commits?

Where I work uses a Perforce environment but we are not allowed to check in until our features are completed and ready to be tested. I need to be able to do local commits because at times I have had ...
6
votes
3answers
838 views

Migrating from git to Perforce

I have the task of migrating my team & source from git to Perforce, and I'm looking for ideas on how to move the git history into p4. I would be happy moving master branch only. However, even ...
5
votes
2answers
3k views

Getting the whole files history with p4-git

As I've mentioned in a previous question, I'm looking into migrating our source control from Perforce to git. Looking around, I've found p4-git (you have to dig a bit more, since it's not even at the ...
4
votes
1answer
395 views

unable to import with git-p4 on windows

I've been trying to import a p4 depot path to git using git-p4 python script. After configuring my environment (git 1.7.1, python 2.7, Windwos XP, p4 env variables) I tried to run the git-p4 script, ...
4
votes
0answers
322 views

git-p4 sync on different branch and repo

I'm trying to mirror a perforce repository, and git-p4 performs well enough on the main branch. I simply have to call git-p4 rebase. I'm also trying to mirror a different branch, but that's not ...
4
votes
2answers
2k views

p4merge error

I am trying to use p4merge with git but I am getting: Error starting p4merge: "path/myFile" is (or points to) an invalid file (this lists the BASE, LOCAL, REMOTE, and standard version of the file). ...
3
votes
1answer
241 views

git-p4 submission failure

I am using git-p4 to work with git locally and trying to submit my changes back to the perforce server. Its the submitting changes back to the server that I am failing to do. I have a client set up ...
3
votes
2answers
181 views

Efficiently backup many versions of a git repo with branch namespacing

At work, we use Perforce for version control. There are problems with this: 1) with this centralized model, we can't check in changes until they are ready for regression. This means that we have no ...
3
votes
1answer
498 views

How to get --detect-branches to work with git-p4?

My p4 repository has a structure similar to: //depot/project/branch1 //depot/project/branch2 //depot/project/branch3 ... etc However, when I use git-p4 to clone "project", all 3 branches are not ...
3
votes
3answers
602 views

git-p4 is eating my image files

So, I can import from p4 using git-p4 without any problem. Everything seems to work, but my PNG files (and perhaps others) are getting corrupted. I've read about gitattributes and the line ending ...
2
votes
1answer
48 views

git-p4 submit fails with patch does not apply

When I do the following: $ git-p4 submit I wind up with the following error trace: error: patch failed: foo/bar/blah.h:1 error: foo/bar/blah.h: patch does not apply Unfortunately applying the ...
2
votes
2answers
297 views

`git-p4 clone` fails “new tip … does not contain …”

I'm runnining on Windows, with the windows p4 client, and git installed via Cygwin. The p4 client advertises how its syntax is regular across platforms and all that, so that should be hunky-dory. So ...
2
votes
1answer
424 views

Git repo planning questions

At work, development uses perforce to handle code sharing. I won't say "revision control", because we aren't allowed to check in changes until they are ready for regression testing. In order to get ...
2
votes
1answer
525 views

Tracking a remotes/p4/master branch in git

I'm cloning a repo that was first generated by git-p4. git-p4 uses a 'remotes/p4/master' branch that I would like to track. How do I tell git, which is cloning that repo, to track remotes/p4/master as ...
1
vote
2answers
117 views

p4-git — any great explanations for how it works

If you use perforce remotely and desire to have the awesome speed of git for tracking diffs, here is the solution: http://kb.perforce.com/article/1417/git-p4 However, I've noticed the following: ...
1
vote
1answer
246 views

Trouble importing all perforce branches into git repo

I'm trying to import a project from my company's Perforce depot into a git repository. I've been successful getting a single branch into a single git repo, but what I'd like to do is to pull in the ...
1
vote
1answer
149 views

What is the purpose of Perforce file “.perforce”?

What is the purpose of Perforce configuration file .perforce? Where may I find a sample file showing its contents? Git-p4 Usage refers to this file, but I don't have this file in any of my ...
1
vote
1answer
677 views

git-p4 submit fails with “Not a valid object name HEAD~261”

I've got a git repository that I'd like to mirror to a Perforce repository. I've downloaded the git-p4 script (the more recent version that doesn't give deprecation warnings), and have been working ...
1
vote
1answer
1k views

git-p4 and pulling from other repos

I have a laptop and a desktop, for which I'm trying to learn to use git to manage my work against a perforce repository. I'm using git-p4 successfully on the desktop, and can use it successfully on ...
0
votes
1answer
36 views

Is there a bug base for git?

Found what appears to be a bug in the git-p4 integration tool and I can't seem to find any place to report it. Am I missing something?
0
votes
1answer
24 views

git-p4 submit on branch other than master?

I noticed that when using git-p4 submit, regardless of what branch I am in on git, it always sends my code to the place in p4 where I cloned it originally. That's my desired behavior when I am on the ...
0
votes
2answers
325 views

Using git-p4 to setup a git clone of a perforce client

I have a perforce client which maps several perforce paths into my local client. These perforce paths are for libraries and the main code line. How do I use git-p4 to setup a clone of the entire ...
0
votes
1answer
126 views

git-p4 import trees contain subdirectory .git

Our company uses Perfoce to manage projects, and I am using git-p4 to sync Perforce repository on my local side. But on P4 repository, it is combined with many module and may contain .git folder for ...
0
votes
1answer
146 views

git-p4 cloned repo contains mixed filename case — how to fix?

I imported a large repo using git-p4, and discovered that I have some strangely mixed-case filenames, e.g.: dirA/DIRb/file1.txt and then other files like so: DIRa/dirB/FILE2.txt and so on. These ...
0
votes
2answers
635 views

git-p4 sync not working - mysterious stack trace

I'm trying to use git-p4 to clone perforce depot. I keep running into a problem in the git-p4 script, where git-p4 tries to access a dict key that is not defined and throws a trace. ...