gpt4 book ai didi

git - 为什么 .gitignore 和 .metadata 没有被提交?

转载 作者:行者123 更新时间:2023-12-04 07:19:25 25 4
gpt4 key购买 nike

我正在开发一个 flutter 应用程序,使用 bitbucket作为版本控制。以下是.gitignore文件:

# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/

# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/

# Flutter/Dart/Pub related
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
.pub-cache/
.pub/
/build/

# Web related
lib/generated_plugin_registrant.dart

# Symbolication related
app.*.symbols

# Obfuscation related
app.*.map.json

# Android Studio will place build artifacts here
/android/app/debug
/android/app/profile
/android/app/release
我愿意 git add *然后 git commit -m "message"进行提交。多么不幸, .gitignore文件永远不会被提交。
当我尝试做 git pullgit pull --rebase ,我收到以下错误
Updating 200df3e..02afe50
error: The following untracked working tree files would be overwritten by merge:
.gitignore
.metadata
Please move or remove them before you merge.
Aborting
浏览互联网,问题似乎是 .gitignore文件和 metadata没有 promise 。所以 pull 不能 merge 它们。
如何确保提交这些文件?
更新
我按照用户 ti7 的回答,在命令 git stash pop 之后,我收到了以下消息。这意味着什么?
On branch master
Your branch is up to date with 'origin/master'.

Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: ios/Flutter/Debug.xcconfig
modified: ios/Flutter/Release.xcconfig

Untracked files:
(use "git add <file>..." to include in what will be committed)
ios/Podfile

no changes added to commit (use "git add" and/or "git commit -a")
Dropped refs/stash@{0} (799d2e53c1509af435d5d4d589a0ded18d3aad64)

最佳答案

这些文件可能不存在于您的工作树中,但确实存在于远程

  • 显式添加文件 git add .gitignore .metadata
  • 藏起来 git stash
  • 然后 merge git pull
  • 取消 stash git stash pop
  • git add * 的问题是 *由您的 shell 扩展,但不包括 .dotfiles

    关于git - 为什么 .gitignore 和 .metadata 没有被提交?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68595431/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com