GIT 仓库基础操作
git
git bash操作实例:
-  在文件夹中打开git(在文件页面上方的路径里面输入git bash即可快速打开git编辑界面) 
- ``` 
 git init //初始化git文件包- 1 
 2
 3
 - ```
 git add 文件名 //创建镜像文件
- ``` 
 git commit //提交- 1 
 2
 3
 - ```
 git commit -m '描述信息' //提交,但不会打开编辑窗口
- ``` 
 git clone https://github.com/fcg22450/my_flask.git- #https://github.com/fcg22450/my_flask.git这里的内容从github页面获取 - 1 
 2
 3
 4
 - ```
 git add .
 #将当前文件夹中的所有文件打包成迁移文件
- ``` 
 git push -u origin master
 #将生成的迁移文件上传到github仓库中- 1 
 2
 3
 4
 - ```
 cd test
 #进入对应文件夹
- ``` 
 git status
 #查看当前准备好的迁移文件- 1 
 2
 3
 4
 - ```
 git config --system --unset credential.helper
 # 清空密码
- git config --global credential.helper store # 保存密码


