别人给了你仓库地址后,你可以使用以下任一方式提交代码,然后开始分支管理、代码评审与合并等操作

为了标识身份,建议先完成 Git 全局设置代码语言:javascript代码运行次数:0运行复制git config --global user.name "your name"

git config --global user.email "your email"方法一:克隆仓库代码语言:javascript代码运行次数:0运行复制git clone https://git.com/app/YanChengXu.git

cd YanChengXu

touch README.md

git add README.md

git commit -m "add README"

git push -u origin master方式二:已有文件夹或仓库代码语言:javascript代码运行次数:0运行复制cd existing_folder

git init

git remote add origin https://git.com/app/YanChengXu.git

git add .

git commit

git push -u origin master方式三:导入代码库代码语言:javascript代码运行次数:0运行复制git clone --bare https://git.example.com/your/project.git your_path

cd your_path

git remote set-url origin https://git.example.com/your/project.git your_path

git push origin --tags && git push origin --all​

我正在参与2024腾讯技术创作特训营最新征文,快来和我瓜分大奖!