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

项目上传至Github

时间:2018-01-11 20:30:09      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:pos   push   src   start   下载   代码   mit   nbsp   info   

https://github.com/ 注册用户,然后点 Start a project,创建仓库

技术分享图片

 

 技术分享图片

记住这个 地址。

 

再去 https://git-scm.com/downloads 下载git 安装到本地,(安装时最好选择修改PATH)

例如我的C盘下有个项目叫 MyDemo,右击MyDemo,选择 “Git Bash Here”

 

1.      git init       建立Git仓库(该目录下会多出个".git"的隐藏目录)

2.      git add .   添加当前目录中的所有文件到索引中(add+空格+点)

3.      git commit -m "first commit"  确认加信息

4.      git remote add origin https://github.com/likehc/Test.git       关联地址

5.      git pull origin master        拉取防冲突

6.      git push -u origin master 推送

 

 技术分享图片

 

(过程中会让你输入github的用户名与密码)

 

 技术分享图片

 

 

 

上传成功后 如上图片所示。

 

 

VS如何与这个代码同步呢

VS安装GitSccProvider.vsix,PC上安装GitExtensions

 

 技术分享图片

 

 技术分享图片

 

 

例如,我想 把项目下载到E盘的MyProjects 目录下

 

可以在命令提示符进入E:\MyProjects ,然后

 git clone https://github.com/likehc/Test.git 下载到本地

 技术分享图片

 

 

 

PS:每次push时,总会要用户名与密码,可以输入

git config --global credential.helper store

会修改 当前用户下的.gitconfig,加入

[credential]

         helper = store

项目上传至Github

标签:pos   push   src   start   下载   代码   mit   nbsp   info   

原文地址:https://www.cnblogs.com/likehc/p/8270126.html

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