2017-09-29 6 views
-1

私は私のUbuntuでgitを使用しています。私は何をすべき私は例えば、私がコミット特定押し込まコード、コミット「ratslamパイソン」を取得したいコミットのコードを取得

--- a/src/node_example/src/pytalker.py 
    +++ b/src/node_example/src/pytalker.py 
@@ -137,6 +137,7 @@ def action_callback(action,em): 
    plot.subplot(2,2,4) 
    plot.title("Experience Map Python") 
    for i in range(em.get_num_experiences()-1): 
+   ggg 
     topo_node.id=em.get_experience(i).id 
     topo_node.pose.position.x=em.get_experience(i).x_m 
     topo_node.pose.position.y=em.get_experience(i).y_m 
[email protected]:~/Images/ratslam_test/rospyy/src/node_example/src$ git log 
commit 34a9d3666a9f5e74d97f719ebcd23ae823277fae 
Author: Younes Raoui <[email protected]> 
Date: Fri Sep 29 14:56:15 2017 +0100 

    ratslam python 2 

commit affc341fc2877f26a86e7529296e8e4b344f97f7 
Author: Younes Raoui <[email protected]> 
Date: Fri Sep 29 14:52:58 2017 +0100 

ratslam python 

: 私は3つのコミットを行っていますか?

+0

'git show affc341fc2877f26a8' –

+1

[コミットのしくみを表示する方法](https://stackoverflow.com/questions/1157818/how-to-show-what-a-commit-did) – bfontaine

+0

ありがとう、それは私に変更された行だけを与えます。すべてのプロジェクトを表示する方法はありますか(複数のファイルから構成されています) –

答えて

0

最後のコミットのために使用

git show 

または3のためか、 (-5または-n)を好きなだけ多くのために

git show -3 

を使用しています。

関連する問題