git下载和上传的用法

来源:互联网 发布:淘宝医疗器械经营 编辑:程序博客网 时间:2024/06/07 00:16

Use

git clone ssh://username@url.com/~username/workfolder/ mylocalrepo

Which will create the repository on your local machine. Any commits you make to that branch are to your local repository, and when you want to push back up to the remote server you can run:

git push ssh://username@url.com/~username/workfolder/

0 0