web-dev-qa-db-ja.com

PERFORCEエラー-非ストリームクライアントから送信できません

GITとSVNのバックグラウンドから来て、私はP4VをWindowsでセットアップし、リポジトリのコンテンツをローカルフォルダーに(なんとかして)何とかして取得しましたが、変更を加えてローカルフォルダーに新しいファイルを作成すると、送信できませんPERFORCEに戻します。エラーが発生します:

//depot/main/p4config.txt-警告:非ストリームクライアントから送信できません送信するファイルがありません送信に失敗しました-上記の問題を修正してから、「p4 submit -c 6」を使用してください。

私のデポ階層:

C:\Perforce\kernelpanic\main>p4 client -S //depot/main -o
# A Perforce Client Specification.
#
#  Client:      The client name.
#  Update:      The date this specification was last modified.
#  Access:      The date this client was last used in any way.
#  Owner:       The user who created this client.
#  Host:        If set, restricts access to the named Host.
#  Description: A short description of the client (optional).
#  Root:        The base directory of the client workspace.
#  AltRoots:    Up to two alternate client workspace roots.
#  Options:     Client options:
#                      [no]allwrite [no]clobber [no]compress
#                      [un]locked [no]modtime [no]rmdir
#  SubmitOptions:
#                      submitunchanged/submitunchanged+reopen
#                      revertunchanged/revertunchanged+reopen
#                      leaveunchanged/leaveunchanged+reopen
#  LineEnd:     Text file line endings on client: local/unix/mac/win/share.
#  ServerID:    If set, restricts access to the named server.
#  View:        Lines to map depot files into the client workspace.
#  Stream:      The stream to which this client's view will be dedicated.
#               (Files in stream paths can be submitted only by dedicated
#               stream clients.) When this optional field is set, the
#               View field will be automatically replaced by a stream
#               view as the client spec is saved.
#
# Use 'p4 help client' to see more about client views and options.

Client: kernelpanic

Update: 2012/10/04 15:35:16

Access: 2012/10/04 15:59:39

Owner:  me.kernelpanic

Host:   kernelpanic

Description:
        Created by me.kernelpanic.

Root:   C:/Perforce/kernelpanic

Options:        noallwrite noclobber nocompress unlocked nomodtime normdir

SubmitOptions:  submitunchanged

LineEnd:        local

View:
        //depot/... //kernelpanic/...
        //depot/main/doc/... //kernelpanic/main/doc/...
        //depot/* //kernelpanic/*
        //depot/main/* //kernelpanic/main/*

可能であれば、C:\ Perforce\kernelpanic\main\srcにもファイルを追加したいと思います...助けてください。Perforceを理解できません。変更前と変更後の両方でチェックアウトを試みましたが、どちらの方法でも変更をサーバーに送信できませんでした。 GITを使い続けたいのですが、クライアントはPerforceを使用しているので、Niceでプレイする必要があります。あなたの助けをありがとう!

25
Zennichimaro

P4Vがストリームデポとメインラインを作成するようにガイドしたにもかかわらず、何らかの方法で非ストリームワークスペースを作成した可能性があります。私が聞いたところによると、それはセットアップの何かが原因で、初めてのP4Vユーザーに起こりそうです。

それが問題であるかどうかを確認するには、接続/ワークスペースの編集に移動し、[ストリーム]フィールドを確認します。空っぽですか?その場合は、[参照]を使用してストリームを選択します。これにより、現在のワークスペースがストリームワークスペースに変わります。

56
user1054341