Git 资源整合

https://pan.baidu.com/s/1kU5OCOB#list/path=%2Fpub%2Fgit 百度云盘 国内下载 git.exe 地址

http://jingyan.baidu.com/article/f7ff0bfc7181492e27bb1360.html 新建项目将自己的项目上传教程

http://blog.csdn.net/cumtcyf/article/details/52527576 git-hub操作范例

http://blog.csdn.net/huobing123456789/article/details/50703882 github在线创建文件夹[一眼看懂]

将项目提交至 git 的操作步骤

  1. 右键启动Git Bash命令行

  2. 输入git clone 接着将先前记录下来的地址复制到后面,回车

  3. 将下载下来的项目文件夹的所有文件及文件夹,包括.git文件夹在内,全部拷贝到你的托管项目的根目录(或者将你的托管项目拷贝到该目录)

  4. 进入到该托管项目的根目录

cd projectName

  1. 输入如下命令,将改动的地方添加到版本管理器
git add .    

  1. 输入如下命令,提交到本地的版本控制库里,引号里面是你对本次提交的说明信息。
git commit -m "changes log"  

如果首次操作可能会遇到如下问题

*** Please tell me who you are.

Run

  git config --global user.email "[email protected]"
  git config --global user.name "Your Name"

to set your account's default identity.
Omit --global to set the identity only in this repository.

fatal: unable to auto-detect email address (got 'Aoliaovier@HaoyongWin10PC.(none

解决方法:

输入 ->  git config --global user.email "[email protected]"  ->  回车
输入 ->  git config --global user.name "xxxxx"  ->  回车
输入 ->  git commit -m "changes log" 

  1. 最后输入如下命令,将你本地的仓库提交到你的github账号里,此时(第一次需要,后面的就不会需要了)会要求你输入你的github的账号和密码。
git push -u origin master  

将github中的项目同步更新至你本地目录你需要用到git fetch

温馨资源

git - 简明指南,助你入门 git 的简明指南,木有高深内容

如何高效利用GitHub -- 阳志平的网志

GitHub简历生成器

你可能感兴趣的:(Git 资源整合)