Simple question: In webstorm, how do I push my local directory to a remote server to make a new remote repository?
I created a local repository using webstorm as defined here: https://www.jetbrains.com/pycharm/help/setting-up-a-local-git-repository.html#createNewRepository
Now I have a local directory with a .git in that directory.
I copied that .git file and put it on my remote server and renamed it as myRemote.git
In webstorm I: git remote add origin z:\myRemote.git
Then in webstorm I add files and push using the webstorm dialogs.
I receive an error: Push rejected Push to origin/master was rejected.
What does that mean? Any ideas how I can do this simple push to a remote easily?
You set up a remote repository by doing the following:
On the remote server
Then, on the local machine (assuming there's already a repo there)