Not sure whether I am doing something wrong. Using the following playbook
- hosts: myhosts
tasks: - name: Update git repo der Anwendung
git:
dest=/my/webapp
repo=repo@host:repos/my-webapp
recursive=no
update=yes
accept_hostkey=yes
sudo: yes
The git to pull the changes the git module always says there is a change:
changed: [myhost] => {“after”: “61b54a57dca2bb263a795541fd3cd9a8090aac45”, “before”: “61b54a57dca2bb263a795541fd3cd9a8090aac45”, “changed”: true, “msg”: “Local modifications exist”}
while I am quite sure that no local changes exist. Can someone reproduce it?
Thanks