Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
git-svn を使用して svn プロジェクト リポジトリのクローンを作成しました。コミットを取得するとき、取得したすべてのブランチにマージするコミットが残っていないことを確認するにはどうすればよいですか?
特定のブランチについて、そのブランチの HEAD とフェッチしたものを比較できます。
git diff ..remotes/git-svn
または、ファイル名だけが必要な場合:
git diff ..remotes/git-svn --name-status
例として、git-svnリモート svn リポジトリの名前を使用します。
git-svn