使用GitBash上传本地代码到Github
2017-06-16 本文已影响0人
willho
Github的操作
创建成功界面新建repository,复制项目git地址
Git的操作
1.进入项目的目录中
工程目录2.配置身份
身份信息git config --global user.email "邮箱"
git config --global user.name "名称"
3.克隆远程Githug新创建的项目
克隆Github项目git clone 复制的项目地址
4.复制克隆的远程项目到工程目录中
cp -af 项目名 ../ (可通过ls -al查看)
rm -r 项目名
5.同步到Github中
同步到Githubgit add .
git commit -m "First commit."
git push origin master