您的位置:首页 > 其它

使用git@osc管理现有项目

2015-09-22 16:36 260 查看
首先安装git和powershell集成git工具

参考 http://www.cnblogs.com/kreo/p/4685988.html
打开windows powershell,进入项目目录,然后初始化git项目

#初始化git
git init
#指定远程仓库路径
git remote add -m master origin [https://git.......]
#下载远程仓库代码
git pull origin master
#首次提交到远程仓库
git add .
git commit -m "First Commit"
git push origin master
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: