This is the first time I am talking to git on my PC. I have one repository in D:\MyProjectA\ and an empty repository clone in D:\MyProjectB\ . Then I set the bare clone as origin by running remote add origin D:\MyProjectB .
Now I have made some changes to MyProjectA and want to return them to their original state. When I run git push origin master in Powershell, I see the following output, but the script does not exit. I need to close Ctrl-C. What's happening?
PS D:\MyProjectA> git push origin master Counting objects: 3, done. Delta compression using up to 16 threads. Compressing objects: 100% (2/2), done. Writing objects: 100% (3/3), 290 bytes | 290.00 KiB/s, done. Total 3 (delta 1), reused 0 (delta 0)
source share