Hello World

###Git
/*

*  pwd 当前的位置
*  ls  当前的位置有多少文件
*  cd  b
*  cd../ 回到上一级
*  cd../../ 回两级
*
*  mkdir
*  vim
*  ...
*
* */

/*
*   www.github.com
*   => sign up
*   username => 用户名
*   EmailAdress => 邮箱地址
*   Password => 密码
*   => create an account
*
*   github就是开源社区
*
*   => 可以理解为就是存放一些自己做的开源项目
*   => 可以在github上发布一个页面,可以让更多的人访问
*   => 可以用来上传和更新老师每天的课件
*
*   需要一个更新的工具git
*
*   新建仓库
*   => 右上角'+'
*   => new repository
*   => Repository name 仓库名
*   => Description  对应仓库描述
*   => Public
*   => Initialize this repository with a README 勾选
*   => create repository
*
*   => clone or download 仓库地址 => 仓库的位置,如果告诉其他人就是一个开源的仓库
*
*   仓库地址                       用户名         仓库名.git
*   => https://github.com/tianxitianxi/Javascript201615.git
*
*   在要存放的讲义的文件夹内执行命令
*   => git clone 仓库地址(群公告)  只有第一次克隆
*   =>
*
*   如何把本地文件推送到github仓库中
*   => 先把文件夹初始化成一个本地仓库 => git init (必须在文件夹内) => 成功之后会多一个隐藏.git文件夹
*   => 主动链接github仓库 => git remote add 名 地址(你要链接的仓库)
*   => 查看是否连接成功   => git remote -v
*
*   => git add -A 全部提交 => 准备阶段  -A可以使用具体文件名
*   => git commit -m"这次提交为了完成什么需求或者做了哪些改动"
*   => git push 链接名 master
*   => 如果提交本地代码到自己仓库,保证这个仓库是空的。readme
*   => 从远程仓库直接使用clone命令,那么默认链接名字是origin
*
*   忽略文件
*   => 新建一个.gitignore的文本文件 => 另存为
*   => 把要忽略的文件名字直接添加在.gitignore这个文件内

如修改老师代码,无法更新,执行以下

1
2
3
4
5
6
7
8
9
10
11
49580@LAPTOP-P1IUAKF6 MINGW32 /e/js/201615node (master)
$ git add .
49580@LAPTOP-P1IUAKF6 MINGW32 /e/js/201615node (master)
$ git commit -m "ss"
On branch master
Your branch is up-to-date with 'origin/master'.
nothing to commit, working directory clean
49580@LAPTOP-P1IUAKF6 MINGW32 /e/js/201615node (master)
$git pull