Git仓库初始化

为了标识身份,建议先完成 Git 全局设置

git config --global user.name "zhangsan" 
git config --global user.email "zhansan@qq.com" 

方式一:克隆仓库

git clone https://codeup.aliyun.com/xxx/project_name.git
cd project_name
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master

方式二:已有文件夹或仓库

cd existing_folder
git init
git remote add origin https://codeup.aliyun.com/xxx/project_name.git
git add .
git commit
git push -u origin master

方式三:导入代码库

git clone --bare https://git.example.com/your/project.git your_path
cd your_path
git remote set-url origin https://codeup.aliyun.com/xxx/project_name.git
git push origin --tags && git push origin --all

 

Git仓库初始化

 
  • 本文由 机智猫 发表于 2024 年 9 月 15 日 13:34:23
  • 转载请务必保留本文链接:https://www.wtcat.com/40.html

发表评论