共计 597 个字符,预计需要花费 2 分钟才能阅读完成。
很多人操作 git 版本库时候,经常会卡在第一步,如何拉取代码如何将当前现有代码同步到远程,经常遇到有人先把要同步的代码重命名或者挪出去,本地先 clone 一个空仓库,再把要同步的文件拖进来,反反复复,而且很多老手也经常这么操作。
今天来整理几个初始化时候,常用的场景:
1、克隆仓库
git clone https://codeup.test.com/clark/project/test.git
cd test
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
2、提交已有文件夹或仓库
cd existing_folder
git init
git remote add origin https://codeup.test.com/clark/project/test.git
git add .
git commit
git push -u origin master
3、导入第三方仓库
git clone --bare https://git.example.com/your/project.git your_path
cd your_path
git remote set-url origin https://codeup.aliyun.com/test/project/test.git
git push origin --tags && git push origin --all
正文完
加入官方交流QQ群:778957856