2017-11-16 7 views
1

リモートリポジトリから自分のローカルリポジトリに移動するたびに、Gitはの情報を格納しますか?私はプルしますか?自分のローカルレポで行った引っ張りのログを見ることはできますか?git pull historyを取得するには

+1

[REFLOG](https://stackoverflow.com/a/ 31837982/7976758) – phd

答えて

1

あなたがしようとすると、あなたのgit reflogの内容を参照してください...しかし、それは(90日デフォルトでは)時間に制限されますができ

[email protected] D:\git\git 
> git reflog --date=iso|grep pull 
3ec7d702a [email protected]{2017-09-10 17:42:57 +0200}: pull --no-commit origin master: Fast-forward 
b3622a4ee [email protected]{2017-08-12 10:36:08 +0200}: pull: Fast-forward 
97e2ff464 [email protected]{2017-06-17 18:43:28 +0200}: pull: Fast-forward 
8d1b10321 [email protected]{2017-06-08 20:36:08 +0200}: pull: Fast-forward 
10c78a162 [email protected]{2017-05-21 21:22:58 +0200}: pull: Fast-forward 
b06d36431 [email protected]{2017-05-14 07:36:49 +0200}: pull: checkout b06d3643105c8758ed019125a4399cb7efdcce2c 
1d1bdafd6 [email protected]{2016-12-22 00:36:52 +0100}: pull --no-commit origin master: checkout 1d1bdafd64266e5ee3bd46c6965228f32e4022ea 
3ab228137 [email protected]{2016-11-12 08:25:02 +0100}: pull: checkout 3ab228137f980ff72dbdf5064a877d07bec76df9 
2632c897f [email protected]{2016-08-20 21:52:51 +0200}: pull: checkout 2632c897f74b1cc9b5533f467da459b9ec725538 
2376d3178 [email protected]{2016-08-13 09:19:54 +0200}: pull: checkout 2376d31787760af598db23bb3982a57419854e5c 
f8f7adce9 [email protected]{2016-07-31 13:34:44 +0200}: pull: checkout f8f7adce9fc50a11a764d57815602dcb818d1816 
ab7797dbe [email protected]{2016-06-22 11:53:20 +0200}: pull: checkout ab7797dbe95fff38d9265869ea367020046db118 
+0

ありがとう@VonC。 reflogは.git/logのHEADログから読み込まれているようです。私は時間がコミット時間と異なっていることに気付いたので、これは私が探していたプル時間だと思います。 – jason