Is there a way to push a commit to a remote git repo, without first making a local clone of that repo?
I have a valid URL for the remote repo, I know the path of the
Yes you can push a new version using tagging
follow this steps
in your new project root
git initgit remote add origin git@github.com:yourusername/yourpojectgit tag -a v2.0 -m 'version 2.0'git add .git commit -m "New Version 2.0 :rocket:"git push -u origin v2.0now you have a new branch called v2.0 with your new project and your master branch stays untouched. After that if you wan't you can change your default branch in your github project settings.