所以我使用
隐藏了一些未跟踪的文件git stash --include-untracked
然后切换到另一个分支。
如果我看看发生了哪些变化:
backend/infinispan-rar/pom.xml | 12 ++++++++++--
backend/pom.xml | 13 +++++++++++--
backend/test/pom.xml | 3 +--
.../main/resources/com/mojiva/testDbContext.xml | 6 +++---
data/mojiva.xml | 2 +-
dbmigration/pom.xml | 16 ++++++++++------
.../main/resources/db/changelogs/issue-17544.xml | 4 ++--
pom.xml | 11 +++++++++++
然后我尝试使用
检索这些文件git stash pop
得到这个:
backend/activator/effective.pom already exists, no checkout
backend/adverter/src/test/java/com/mojiva/presenter/RequestParamReplacerTest.java already exists, no checkout
backend/dao/.cpath already exists, no checkout
backend/dao/.e0 already exists, no checkout
backend/dao/PutObjectStoreDirHere/defaultStore/Recovery/TransactionStatusManager/#22#/0_ffffc0a86465_cfd2_5016b5cb_1 already exists, no checkout
backend/dao/dep.tree already exists, no checkout
backend/feeds-test/.e0 already exists, no checkout
backend/feeds-test/dep.tree already exists, no checkout
data/wurfl-patch.xml already exists, no checkout
run/linksDB.log already exists, no checkout
run/linksDB.properties already exists, no checkout
run/linksDB.script already exists, no checkout
Could not restore untracked files from stash
请注意,这些文件都不相同?
这里发生了什么?
谢谢!
答案 0 :(得分:5)
在下面提到的博客中,介绍了如何应用使用-a
代替-u
创建的藏匿处:
找到存储的提交:
git log --graph --all --decorate --oneline
检查出来
git checkout <sha>
重置父级:
git reset HEAD~1
创建一个干净的藏匿处:
git stash -u
您现在可以结帐master
并应用新的藏匿处。
https://blog.tfnico.com/2012/09/git-stash-blooper-could-not-restore.html#!
答案 1 :(得分:3)
我今天完成了同样的事情,并没有找到有用的帮助。 所以我做了这个伎俩:
python -m serial.tools.list_ports
这将创建一个临时分支。然后你就可以把它藏在上面了。
git checkout stash
在安全的地方手动复制所有已更改的文件。
忽略临时分支并结帐到原始分支。
首先将文件粘贴到您找到它们的位置。
完成。
这个问题很老了。但答案可能会帮助像我这样的人。所以...
答案 2 :(得分:-3)
您应该忽略非源代码的日志和其他文件。无论哪种方式,您都可以添加--force
来覆盖它们。
在您的情况下发生的事情是,您弹出的文件将会尝试覆盖您在工作文件夹中已有的文件。如果你在那里有重要的工作,git将安全地发挥它,而不是盲目地覆盖它们。
最好的建议是清理你的设置:
.gitignore
文件中。如果您是新手,请在webchat.freenode.net上打开#git IRC频道:)