0

私はgitリモートリポジトリでEclipseを使用しています。

何らかの理由で、リモート リポジトリと同期していないフォルダー (およびすべてのサブフォルダー) があります。これらのフォルダー内の変更されたファイルにはアスタリスク (*) が表示されないため、ステージングもコミットもできません。

プロジェクトを表示するために www.bitbucket.org に入ると、そのフォルダーに表示されるのは、「フォルダーなし」の名前の横に青い矢印が付いたアイコンだけであり、通常のフォルダー アイコンではありません。これは、到達して適切に同期できるフォルダーの横に表示されます。

横にある青い矢印アイコン 同期され、正常に機能するフォルダの横にある通常のフォルダ アイコン

[オプション] --> [チーム] --> [インデックスに追加] が機能していません。git add <folder>ない

私は何を間違っていますか?何か案が?

どうもありがとう

ペドロ

ここに git ステータス ダンプがあります。

# On branch master
# Changes not staged for commit:
#   (use "git add/rm <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#   (commit or discard the untracked or modified content in submodules)
#
#   modified:   .project
#   modified:   app/AppKernel.php
#   modified:   app/bootstrap.php.cache
#   deleted:    app/cache/dev/annotations/Acme-DemoBundle-Controller-DemoController    #contactAction.cache.php
#   deleted:    app/cache/dev/annotations/Acme-DemoBundle-Controller-DemoController    #helloAction.cache.php
#   deleted:    app/cache/dev/annotations/Acme-DemoBundle-Controller-DemoController    #indexAction.cache.php
#   deleted:    app/cache/dev/annotations/Acme-DemoBundle-Controller-DemoController.cache.php
#   deleted:    app/cache/dev/annotations/Xtremapp-DemoBundle-Controller-SecuredController    #loginAction.cache.php
#   deleted:    app/cache/dev/annotations/Xtremapp-DemoBundle-Controller-SecuredController    #logoutAction.cache.php
#   deleted:    app/cache/dev/annotations/Xtremapp-DemoBundle-Controller-SecuredController    #securityCheckAction.cache.php
#   deleted:    app/cache/dev/annotations/Xtremapp-DemoBundle-Controller-SecuredController.cache.php
#   deleted:    app/cache/dev/annotations/Xtremapp-DemoBundle-Controller-WelcomeController    #indexAction.cache.php
#   modified:   app/cache/dev/appDevDebugProjectContainer.php
#   modified:   app/cache/dev/appDevDebugProjectContainer.php.meta
#   modified:   app/cache/dev/appDevDebugProjectContainer.xml
#   modified:   app/cache/dev/appDevDebugProjectContainerCompiler.log
#   modified:   app/cache/dev/appdevUrlGenerator.php
#   modified:   app/cache/dev/appdevUrlGenerator.php.meta
#   modified:   app/cache/dev/appdevUrlMatcher.php
#   modified:   app/cache/dev/appdevUrlMatcher.php.meta
#   deleted:    app/cache/dev/assetic/config/0/064cba00a41b006ad8ca939936416158.php
#   modified:   app/config/config.yml
#   modified:   app/config/config_dev.yml
#   modified:   app/config/routing.yml
#   modified:   app/config/routing_dev.yml
#   modified:   app/config/security.yml
#   modified:   deps
#   modified:   src/Acme/StoreBundle/Controller/ConfigurationController.php
#   modified:   src/Acme/StoreBundle/Resources/translations/messages.es.yml
#   modified:   src/Acme/StoreBundle/Resources/views/layout.html.twig
#   modified:   vendor/bundles/FOS/UserBundle (modified content, untracked content)
#   modified:   vendor/doctrine (modified content, untracked content)
#   modified:   vendor/symfony (modified content)
#
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
#
#   .gitignore
#   .settings/
#   app/AcmeStoreBundle.php
#   app/Common/
#   app/Resources/
#   app/cache/dev/annotations/Acme-StoreBundle-Controller-ConfigurationController    #confAction.cache.php
#   app/cache/dev/annotations/Acme-StoreBundle-Controller-ConfigurationController    #configurationAction.cache.php
#   app/cache/dev/annotations/Acme-StoreBundle-Controller-ConfigurationController    #saveConfigurationAction.cache.php
#   app/cache/dev/twig/98/
#   app/cache/dev/twig/99/
#   app/cache/dev/twig/9b/
#   app/cache/dev/twig/a0/
#   app/cache/dev/twig/a4/
#   app/cache/dev/twig/ac/
#   app/cache/dev/twig/ae/
#   app/cache/dev/twig/b0/
#   app/cache/dev/twig/b3/
#   app/cache/dev/twig/b9/
#   app/cache/dev/twig/bb/
#   app/cache/dev/twig/bc/
#   app/cache/dev/twig/bd/
#   app/cache/dev/twig/c0/3a/
#   app/cache/dev/twig/c0/89/
#   app/cache/dev/twig/c2/
#   app/cache/dev/twig/c5/
#   app/cache/dev/twig/c6/
#   app/cache/dev/twig/c8/
#   app/cache/dev/twig/c9/
#   app/cache/dev/twig/ca/
#   app/cache/dev/twig/ce/
#   app/cache/dev/twig/e4/
#   app/cache/dev/twig/ec/
#   app/cache/dev/twig/ee/
#   app/cache/dev/twig/ef/
#   app/cache/dev/twig/f0/
#   app/cache/dev/twig/f3/
#   app/cache/dev/twig/f4/
#   app/cache/dev/twig/f6/
#   app/logs/
#   src/Acme/StoreBundle/.DS_Store
#   src/Acme/StoreBundle/Resources/.DS_Store
#   src/Acme/StoreBundle/Resources/views/Configuration/
#   web/bundles/fosjsrouting

含めたいフォルダの 1 つの .gitignorer で再編集しますが、そうではありません。phpunit.xml Tests/autoload.php nbproject catalog.xml Propel/om/* Propel/map/*

!vendor/vendors.php
!vendor/*
4

1 に答える 1

0

フォルダ/サブフォルダ/ファイルをリポジトリに追加しましたか?

フォルダを右クリック -> チーム -> インデックスに追加

于 2012-08-12T22:24:18.370 に答える