I've run into a problem when I try to push only the new files I created to a different bare repository.
Say, I had two bare repository: repo1.git and repo2.git
I clone a copy of repo1.git and create a new file called test_repo1.txt
I push test_repo1.txt to the origin (repo1.git)
I now create another file called test_repo2.txt I want to push ONLY test_repo2.txt from my repo1.git working copy to repo2.git repository.
So, I ran the following commands under my repo1.git working copy.
git add test_repo2.txt
git commit -m "add only test_repo2.txt file to repo2.git"
git push repo2.git master:master
Once I did the above commands,
I went in to the repo2.git working copy and find out that "test_repo2.txt" file is there but "test_repo1.txt" file is also there as well which is not what I want. I only want "test_repo2.txt" to be there not "test_repo1.txt".
Why did the "test_repo1.txt" file end up in the repo2.git bare repository ?
Your help will be much appriciated.
Thanks
Finau