AboutGithub
github 基础
执行git
1  | git init  | 
github 仓库链接
1  | git remote add origin [https ]  | 
拉到本地防止冲突
1  | git pull origin master(main)  | 
提交本地缓存
1  | git add .  | 
形成本地仓库的项目文件分支结构
1  | git commit -m 'first commit'  | 
本地仓库内容提交到github仓库
1  | git push -u origin master  | 
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
 Comment
