github三大步骤

1)git init : 初始化当前目录,把这个目录变成Git可以管理的目录

2)git add 【文件名称】:  把文件添加到仓库

3)git commit -m "对当前提交文件的描述": 将文件提交到仓库。

    

原文地址:https://www.cnblogs.com/SkyGood/p/3958729.html