好吧,只说最基本的。
1.安装git环境
2.建立repo,从github的个人页面建立
3.初始化
- mkdir nenew
- cd nenew
- touch README.md
- vim README.md
- git init
- git add README.md
- git commit -m "set up git repo by nenew"
- git remote add origin https://github.com/xxxx/nenew.git
- git push -u origin master
这时候你的第一条readme就已经更新到了你的repo。
4.之后的使用
- touch a,b,c,d
- git add ./
- git commit -a -m "a b c d files added"
- git push origin master
这是最基本的使用方法,当然,git提供了众多功能,可以参考:https://gitcafe.com/GitCafe/Help