pycharm command line to create version library

How to upload the built project in pycharm to your own git server

Create a new repository via the command line

    touch README.md
    git init
    git add README.md
    git commit -m "first commit"
    git remote add origin ssh://XXXX@ip:29418/newbb.git
    git push -u origin master

Push an existing repository via the command line

    git remote add origin ssh://XXXX@ip:29418/newbb.git
    git push -u origin master

The initial menu was not successfully completed, and finally it was solved perfectly through the above command.

 

Guess you like

Origin blog.csdn.net/fqfq123456/article/details/131209189
Recommended