最近想把一些看到的电子书存起来,想来想去,还是放在GitHub上吧~
1.在GitHub上建立一个Repositories并获取地址:
https://github.com/fym2016/Thinking.git
2. ubuntu中安装git
3. 新建目录mkdir test 用来clone GigHub上的步骤1中的Repositories:
git clone https://github.com/fym2016/Thinking.git
4. 在本地仓新建文件夹存入“饭菜”
5. 加入暂存区
git add .
6. 写注释
git commit -m 'The Art of Thinking Clearly'
此时可能会报错,需要配置gitconfig
git config --global user.email "xxx@qq.com"
git config --global user.name "xxx"
7. 推送到远程库
git push
紧接着输入你的GitHub用户名和密码就行了,至此一次简单的上库就完成了~~
8. 其他命令
git status .
该命令用来查看当前仓的状态,在每步操作时可以试试看有什么变化哦!