I used git to checkout code from central repository. After I changed the code, I cannot make commits to that central repository, so I made commit to local repository.
Now without affecting the central repository, can I make my changes available at other place?
I mean: How to convey my local changes to other places?
The need for this arises as follows: Since central repo is public and not our own, we locally use cvs to maintain versioning. So, after making local git commit, it is producing error at other place, as follows:
fatal: ambiguous argument 'HEAD^..HEAD': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions
Thanks. I hope my question is clear.
Git has a clone function which will allow you to do this. Just google “git clone”