git clone /path/to/repository
如果是远端服务器上的仓库,你的命令是这样:
git clone username@host:/path/to/repository
多种方式的URI
git add <filename>
git add *
git commit -m "代码提交信息"
将本地仓库的head中的东西提交到远程服务器上:
git push origin master(分支名)
欲将本地的仓库连接到某个远程服务器
git remote add origin <server>
持续补充,作为自己查询使用