Git 建仓合仓简易教程
- 发表于
- 日志
Git 全局设置:
1 2 |
git config --global user.name "id" git config --global user.email "email" |
创建 git 仓库:
1 2 3 4 5 6 7 8 |
mkdir 111 cd 111 git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://giturl.git git push -u origin master |
已有项目?
1 2 3 |
cd existing_git_repo git remote add origin https://giturl.git git push -u origin master |
原文连接:Git 建仓合仓简易教程
所有媒体,可在保留署名、
原文连接
的情况下转载,若非则不得使用我方内容。