mkdir linux_shell_config cd linux_shell_config
#初始化
git init
修改文件 或 添加文件
#添加修改的文件
git add *
#提交 本地仓库
git commit -m "注释" #有时自动打开编辑器 直接在编辑里添加注释,注意注释前不能有#
#提交 远程仓库
git push
#启图形git
sudo apt install git-gui git gui #中间没有横线
git GUI