创建GitHub仓库
默认即可,效果如下图
命令行创建本机仓库
echo -e "node_modules\n*.log" > .gitignore //添加忽略文件
echo "# test1" >>README.md //添加说明文档
git init
git add .
git commit -m '1st'
git remote add origin http://github.com/wblong/test1 //设置远程库地址
git push -u origin master //将本地代码同步到远程仓库的master分支上
提交新的更改
git add .
git commit -m 'v1.0.0'
git push
重置上一次提交
git commit --amend
抓取远程代码到本地
git fetch origin master
/*
From https://github.com/wblong/hsl-to-hex
* branch master -> FETCH_HEAD
*/
git log -p master..origin/master
git merge origin/master
等同于
git pull
推荐使用前者