码迷,mamicode.com
首页 > Web开发 > 详细

git 关联远程库(https协议)

时间:2017-01-16 14:28:54      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:.net   邮箱   conf   设置   初始化   master   mail   ignore   origin   

1、在oschina上新建库

2、在本地文件夹右键->"git Bash here"

3、设置全局变量:
git config --global user.name "git账号"
git config --global user.email "git邮箱"

4、初始化本地库
git init

5、关联远程库:
git remote add origin https://git.oschina.net/......git

6、第一次提交(比如新建了一个txt文档):
git add .
git commit -m "提交说明" .
git push -u origin master

(提交期间会要求输入账号、密码)

 

 

可以通过 touch .gitignore 创建.gitignore 文件,用以忽略不必要的提交文件(如 bin obj等)

git 关联远程库(https协议)

标签:.net   邮箱   conf   设置   初始化   master   mail   ignore   origin   

原文地址:http://www.cnblogs.com/qk2014/p/6289326.html

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