git常用命令
什么是 git
Git 是目前世界上最先进的分布式版本控制系统
git 安装
windows
官网直接下载安装包
Linux
1 | $ sudo apt-get install git |
配置
初始化
bash 下:
1 | $ git config --global user.name "bitzo" |
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
1 | $ hexo new "My New Post" |
More info: Writing
1 | $ hexo server |