I'm messing around with git for the first time on my PC. I have one repository in D:\MyProjectA\
, and a bare clone of the repository in D:\MyProjectB\
. Then I setup the bare clone to be origin
by running remote add origin D:\MyProjectB
.
Now I've made some changes to MyProjectA and want to push them back to origin. When I run git push origin master
in Powershell, I see the following output, but the script doesn't exit. I have to Ctrl-C to close. What's going on?
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)