# Docker_shell **Repository Path**: sjip/Docker_shell ## Basic Information - **Project Name**: Docker_shell - **Description**: Docker使用过程中的脚本 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 4 - **Created**: 2015-11-15 - **Last Updated**: 2022-10-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 简易的命令行入门教程: Git 全局设置: git config --global user.name "sjip008" git config --global user.email "314629925@qq.com" 创建 git 仓库: mkdir testapp cd testapp git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/sjip/testapp.git git push -u origin "master" 已有仓库? cd existing_git_repo git remote add origin https://gitee.com/sjip/testapp.git git push -u origin "master"