码迷,mamicode.com
首页 > 其他好文 > 详细

使用git@osc管理现有项目

时间:2015-09-22 18:05:34      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

首先安装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

 

使用git@osc管理现有项目

标签:

原文地址:http://www.cnblogs.com/kreo/p/4829364.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!