1
A
回答
1
方便的方式去這是臨時聚集所有的遙控器在一個回購協議。 考慮REPO_LIST
作爲(本地)總線向存儲庫一個git服務器上的陣列:
$ mkdir /tmp/aggregate_repo && cd $_ && git init .
$ REPO_LIST=(/path/to/repo1 /path/to/repo2 /path/to/repoN); \
for repo in ${REPO_LIST[@]}; do git remote add $(basename $repo) $repo; done
$ git fetch --all
$ git for-each-ref --format='%(refname)' refs/remotes | \
while read ref; do git log --grep=SEARCH_PATTERN $ref --pretty=oneline; done | \
sort | uniq
這將創建聚合回購,添加所有的遙控器進行搜索,獲取遙控器,然後在每個refname每個遠程都會搜索SEARCH_PATTERN,列出所有匹配的提交。
相關問題
- 1. 是否存在與git prepare commit消息鉤子相同的SVN
- 2. 在git倉庫服務器中刪除或還原git commit
- 3. ^在Git commit消息中的M個字符(git commit -v)
- 4. ftp服務器上的Git存儲庫
- 5. 我可以在Bonobo GIT服務器中創建多個存儲庫目錄嗎?
- 6. IntelliJ git commit消息模板
- 7. git從存儲庫到服務器
- 8. 如何在git存儲庫中添加多個服務器
- 9. 搜索完整的git commit消息正文
- 10. 在服務器級git push期間檢索git存儲庫名稱
- 11. 如何搜索git commit comments?
- 12. 你可以在git commit消息中標記某人嗎?
- 13. 在git中搜索簽入消息
- 14. Git存儲庫錯誤消息與JFileChooser
- 15. 更改Git存儲消息
- 16. 撤消git commit
- 17. 是否可以在Glassfish服務器中存儲SQL數據庫?
- 18. GIT:在GIT Bash中更新存儲庫,GIT GUI仍顯示舊的存儲庫
- 19. Git存儲庫內的Git存儲庫
- 20. 是否可以將MKS Integrity存儲庫導入到git中?
- 21. XMPP服務器可以存儲離線消息多長時間
- 22. 如何在Git Tower中獲得Git Commit消息?
- 23. 我可以使用Git在存儲庫中搜索匹配的文件名嗎?
- 24. git:鏡像存在於遠程git服務器上的所有存儲庫?
- 25. git存儲,git apply,修改,git commit,git pop(首選rebase)?
- 26. Git刪除服務器上不在存儲庫中的文件
- 27. git消息是否標準?
- 28. 撤消git存儲,git pull
- 29. Git遠程服務器存儲庫文件存儲
- 30. 是否可以在命令行中列出git存儲庫問題?