Hi to all, i'm tring to setup in raspberry git. In root i created a folder which contains a web-project. Then i created a second folder that should contain a copy of project to edit it. Into the first folder i setted git init -> git add . -> git commit -m "..." Into the second folder, i setted git init -> git clone secondfolder So i try edit same file and the i try to push them (git add . -> git commit -m "..." -> git push origin master). The procedure give me the answer that push to master->master is ok, but if go into folder 1 and i dont find out the file with new changes. How can i solve this problem?
Last updated